cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Choose Language Hide Translation Bar
MannPuppy432
Level I

Dunnett Quantile

some body can help me on this formula, why i cannot give 4 numbers on this ?

MannPuppy432_0-1699773049533.png

 

3 REPLIES 3
jthi
Super User

Re: Dunnett Quantile

My guess is that it is related to the other inputs you are using Dunnett Quantile(1-alpha, nTrt, dfe, <lambdaVec=.>)  (I'm not familiar with this function).

 

Names Default To Here(1);
Dunnett Quantile(0.95, 3, 11, [1 2 3 4]);

Will throw an matrix dimension error

 

 

matrix dimensions are incorrect for operation in access or evaluation of 'Dunnett Quantile' , Bad Argument([1 2 3 4]), Dunnett Quantile/*###*/(0.95, 3, 11, [1 2 3 4])

 

and this won't

 

Names Default To Here(1);
Dunnett Quantile(0.95, 4, 11, [1 2 3 4]);

 

 

-Jarmo
MannPuppy432
Level I

Re: Dunnett Quantile

my formula is so simple, but somehow JMP inform error on lamdaVec

Names Default To Here(1);
Dunnett Quantile(0.95, 1, 146, [0.7]);

 

jthi
Super User

Re: Dunnett Quantile

For me your example works fine (using JMP 17.2)

jthi_1-1699783817250.png

If lambdaVec isn't matrix it will throw an error (0.7 instead of [0.7])

jthi_2-1699783855754.png

 

-Jarmo