BookmarkSubscribeRSS Feed
schwartz
Calcite | Level 5

 

Thanks

2 REPLIES 2
Rick_SAS
SAS Super FREQ

I can't tell from your picture if this is count data or not. Is your response variable always an integer, or does it include values like 0.5 and 0.87321?

 

SAS/STAT supports fitting several zero-inflated models. You can use PROC GENMOD to fit zero-inflated models, or you can use PROC FMM to fit the data as a finite mixture.

 

If that doesn't suffice, what kind of a permutation test are you looking for? What quantity are you comparing between groups?

PGStats
Opal | Level 21

You could start by testing if the proportion of zeros is the same across b groups:

 

data myData0;
set myData;
isZero = a=0;
run;

proc freq data=myData0;
tables isZero*b / chisq;
run;
PG

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

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
  • 2 replies
  • 1389 views
  • 0 likes
  • 3 in conversation