BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
MaryA_Marion
Lapis Lazuli | Level 10

This code is run after proc logistic. No errors in log but no label either. What is wrong here? Thank you.

MM

 

data pred; set pred;
label stdresdev="StandardizedDevianceResiduals";
run;
proc print; run;

pred is created during a run of proc logistic. no errors in log.

output out=pred predprobs=individual xbeta=xbeta p=probability lower=lower upper=upper  reschi=reschi resdev=resdev stdresdev=stdresdev / alpha=.05;

 

1 ACCEPTED SOLUTION

Accepted Solutions
sbxkoenk
SAS Super FREQ

Adding to what @PaigeMiller already proposed, you can even split the label to improve readability (if that word exists?) :

 

data have;
stdresdev=2.7;
label stdresdev="Standardized*Deviance*Residuals";
run;

proc print data=have label split='*'; run;

Koen

View solution in original post

4 REPLIES 4
PaigeMiller
Diamond | Level 26

Use the LABEL option in PROC PRINT.

--
Paige Miller
sbxkoenk
SAS Super FREQ

Adding to what @PaigeMiller already proposed, you can even split the label to improve readability (if that word exists?) :

 

data have;
stdresdev=2.7;
label stdresdev="Standardized*Deviance*Residuals";
run;

proc print data=have label split='*'; run;

Koen

PaigeMiller
Diamond | Level 26

Good point. If you are going to create a label, make it a readable label.

--
Paige Miller

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 16. Read more here about why you should contribute and what is in it for you!

Submit your idea!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

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
  • 4 replies
  • 703 views
  • 1 like
  • 4 in conversation