cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Instantly extract effect sizes, F-ratios, and FDR-adjusted p-values from your models with the Calculate Effects Sizes extension, available now in the JMP Marketplace!
  • New to JMP? Join us Sept. 23-24 for the Early User Edition of Discovery Summit, tailor-made for new users. Register now for free!
  • See how to use the JMP Marketplace – Free tools to expand JMP capabilities. Register. July 10, 2 pm US Eastern Time.

Discussions

Solve problems, and share tips and tricks with other JMP users.
Choose Language Hide Translation Bar

What is the format for parameters for the Random Normal Mixture?

Suppose I want mean1 = 20, Mean2 = 40,  SD1 = 10, SD2 = 10, Probability1 = 0.8, Probability2 = 0.2.  How do I put these numbers in vectors for the "meanvec", "sdvec" and "probvec"?

2 REPLIES 2
ms
Super User (Alumni) ms
Super User (Alumni)

Re: What is the format for parameters for the Random Normal Mixture?

Random Normal Mixture([20, 40], [10, 10], [.8, .2])

Or if you want to use variables for the vectors

M= matrix(evallist({mean1 = 20, Mean2 = 40,  SD1 = 10, SD2 = 10, Probability1 = 0.8, Probability2 = 0.2}));


//Example

dt = New Table("Test",

    add rows(500),

    New Column("RNM", Formula(Random Normal Mixture(M[1 :: 2], M[3 :: 4], M[5 :: 6])))

);

dt << Distribution(Continuous Distribution(Column(:RNM)));

Re: What is the format for parameters for the Random Normal Mixture?

Thanks.  That works!

Recommended Articles