Hi All,
I'm running Poisson regression model. My outcome is the number of events per census block group and the predictor is the number of toxic industrial facilities per census block group. My events are very rare where maximum count is 3 and min is 0.
I wanted to run exact poisson regression model shown in the code below. But I get the error:
WARNING: There is not enough memory available to build the network for exact computations.
ERROR: The SAS System stopped processing this step because of insufficient memory.
But I'm skeptical if it's a memory issue. Because model doesn't run even at the first obs=100 observations.
Any suggestions and ideas? Thanks in advance!
PROC GENMOD DATA=MYDATA;
CLASS AGECAT(REF='10')/PARAM=REF ref=first;
MODEL N_BLOCK = X_COUNT SES AGECAT/ DIST=POISSON LINK=LOG OFFSET=LN;
exact X_COUNT;
RUN;
SAS Output