Hi All,
I'am running this logistic procedure. Only the ParametersEstimates table is created, not the modelAnova (even when I used type3 name instead) and NOPRINT options is not activated
.
/*table of type3 test of effetcs*/
let varX = VarA VarB varC ;
ods output ParameterEstimates = param_tmp ModelANOVA = model_tmp ;
proc logistic data=ds_temp1 ;
by replicate ;
freq numberhits;
class VarClass. ;
model varY (event = '1') = &varX. ;
run;
this is the msg I get
WARNING: Output 'ModelANOVA' was not created. Make sure that the output object name, label, or path is spelled correctly. Also,
verify that the appropriate procedure options are used to produce the requested output object. For example, verify that
the NOPRINT option is not used.
thanks
This is a newer feature, not in SAS 9.3. What version of SAS and SAS/STAT do you have?
You can check with
Proc product_status;run;
Thanks Reza.
For Base SAS Software ...
Custom version information: 9.4_M4
Image version information: 9.04.01M4P110916
For SAS/STAT ...
Custom version information: 14.2
Than you Reeza
Save $250 on SAS Innovate and get a free advance copy of the new SAS For Dummies book! Use the code "SASforDummies" to register. Don't miss out, May 6-9, in Orlando, Florida.
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.