BookmarkSubscribeRSS Feed
dal233
Calcite | Level 5

I would like to use proc genmod to output DevianceResidualPlot as outlined here:

http://support.sas.com/documentation/cdl/en/statug/63033/HTML/default/viewer.htm#statug_genmod_sect0...

I start by writing:

ods graphics on;

proc genmod data=train plots=DevianceResidualPlot;

etc. etc.

But I get an error like this:

ERROR 22-322: Syntax error, expecting one of
  the following: (, ALL, CLEVERAGE, CLUSTERCOOKSD, CLUSTERDFIT, COOKSD, DCLS,
  DFBETA,
              DFBETAC, DFBETACS, DFBETAS,
  DOBS, LEVERAGE, MCLS, NONE, PREDICTED, PZERO, RESCHI, RESDEV, RESLIK, RESRAW,
  STDRESCHI,
              STDRESDEV.
ERROR
  76-322: Syntax error, statement will be ignored.

So the option I want doens't seem to be loaded.  How come?


5 REPLIES 5
PGStats
Opal | Level 21

Try PLOTS=RESDEV

PG
Reeza
Super User

DevianceResidualPlot isn't on the list of plots in SAS 9.3 for PROC GENMOD, perhaps it is in 9.4?

In 9.3 the closest that I see is RESDEV





dal233
Calcite | Level 5

Yes, all I can see is RESDEV too.

stat_sas
Ammonite | Level 13

RESDEV will be used to get DevianceResidualPlot graph. To validate this add ods trace on in syntax.You will see output added to DevianceResidualPlot.

ods graphics on;

ods trace on;

proc genmod data=train plots=RESDEV;

Rick_SAS
SAS Super FREQ

You have specified the name of the ODS graphic. Instead, you should specify the option in the SAS grammar.

sas-innovate-2024.png

Today is the last day to save with the early bird rate! Register today for just $695 - $100 off the standard rate.

 

Plus, 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
  • 5 replies
  • 1502 views
  • 6 likes
  • 5 in conversation