BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
BchBnz
Obsidian | Level 7

Hello everyone,

I hope you are all well.

I am trying to run a difference-in-difference regression analysis (if you have experience with diff-in-diff in SAS, please share any useful tips.)

So, I ran first this model to compare between the means of each categorical group:

proc glm data = daily0809;

class group tm;

model dbas = group tm group*tm/ss3;

lsmeans group*tm;

run;

quit;

However, I got the following Warning.

WARNING: ODS graphics with more than 5000 points have been suppressed. Use the

         PLOTS(MAXPOINTS= ) option in the PROC GLM statement to change or override the cutoff.

I tried to use the plot(maxpoints=) option but I think I am not doing it properly. My data comprises 116569 observations and 8 variables.


Thanks in advance!!

1 ACCEPTED SOLUTION

Accepted Solutions
slchen
Lapis Lazuli | Level 10

Try:

proc glm data = daily0809  PLOTS(MAXPOINTS=NONE) ;

View solution in original post

2 REPLIES 2
slchen
Lapis Lazuli | Level 10

Try:

proc glm data = daily0809  PLOTS(MAXPOINTS=NONE) ;

BchBnz
Obsidian | Level 7

Thanks.

I tried that before but somehow with your code it's working.

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 Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 2 replies
  • 23623 views
  • 7 likes
  • 2 in conversation