BookmarkSubscribeRSS Feed
DJ
Calcite | Level 5 DJ
Calcite | Level 5

Hello friends,

I have a question regarding selection of statistical test. Here is the situation: we have two treatments A & B and would like to compare differences between A & B. We have 100samples, we made two aliquots from each sample and applied both treatments. How should I treat this data - matched pair or independent two groups?

Which SAS procedure will work for me?

Thanks in advance.

DJ

4 REPLIES 4
PGStats
Opal | Level 21

I would treat the data as matched pairs :

proc glimmix data=test plots=all;

class treat sampleId;

model x = treat / solution;

random intercept / subject=sampleId;

run;

look carefully at the residual plots for any pattern.

PG

PG
DJ
Calcite | Level 5 DJ
Calcite | Level 5

Hi PG,

Thanks for the prompt reply.

Is there any non-parametric test appropriate to this problem?
Thanks

DJ

PGStats
Opal | Level 21

You could do a Wilcoxon signed ranks test on the difference between treatments (A-B) for each sample. It is available in PROC UNIVARIATE.

PG

PG
SteveDenham
Jade | Level 19

I am very curious as to why the OP would want to do a non-parametric test.  Are the response variables really non-normally distributed?  If the response variable is a concentration, perhaps a lognormal distribution can be assumed, and the GLIMMIX approach appropriately modified with a dist= option.  On the other hand, if there is a problem with responses being above or below limit of quantitation for the assay, I can understand wanting to move to a nonparametric test.  However, if this is not the case, the detectable difference for the nonparametric test will be much larger than for the parametric test.

And of course, once those plots are examined, it may be really obvious why a nonparametric approach would be needed.

Steve Denham

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

What is ANOVA?

ANOVA, or Analysis Of Variance, is used to compare the averages or means of two or more populations to better understand how they differ. Watch this tutorial for more.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 4 replies
  • 1662 views
  • 0 likes
  • 3 in conversation