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

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

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
  • 1363 views
  • 0 likes
  • 3 in conversation