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-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 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
  • 22948 views
  • 7 likes
  • 2 in conversation