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

I am interested in only seeing the below portion of proc logistic. Is there a way to specify only to see this output? Thank you for any assistance you can provide.

                                         TheSAS System      15:02 Monday, November 7,2011 1804

                                     TheLOGISTIC Procedure

                                    ModelConvergence Status

                         Convergence criterion(GCONV=1E-8) satisfied.

                                      Model FitStatistics

                                                         Intercept

                                          Intercept            and

                             Criterion          Only     Covariates

                             AIC            6775.825       6777.534

                             SC             6782.682       7161.483

                             -2 Log L       6773.825       6665.534

                            Testing Global NullHypothesis: BETA=0

                    Test                 Chi-Square       DF    Pr > ChiSq

                    Likelihood Ratio       108.2913       55         <.0001

                    Score                  103.3754       55         <.0001

                    Wald                    98.8553       55         0.0003

                                   Type 3Analysis of Effects

                                                  Wald

                           Effect      DF   Chi-Square    Pr > ChiSq

                           school      54      98.0675        0.0002

                           sex          1        0.8088        0.3685

1 ACCEPTED SOLUTION

Accepted Solutions
2 REPLIES 2
art297
Opal | Level 21

You can use ODS to pull up specific output tables.  For proc logistic they are identified at:

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

Reeza
Super User

Run the proc with with the code between ods trace on and off

ie

ods trace on;

proc logistic....rest of code

ods trace off;

Look at the log and get the names of the tables you're interested in or the doc that Art provided a link to.

then add in the line for either ods select or ods exclude.

ods select tablenameshere;

proc logistic

then the only output you'll get are the ones youre interested in.

If you only want to exclude one table then its easier to ods exclude tablename rather than type ods include allothers

so decide what works for you.

sas-innovate-2024.png

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

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
  • 1228 views
  • 3 likes
  • 3 in conversation