BookmarkSubscribeRSS Feed
RorschachYoung
Fluorite | Level 6

when i using PROC LOGISTIC ,unlike PROC PRINT there is no label option, so can i change ouput's variable name into label name in this situation?

RorschachYoung_0-1629077981246.pngthis is the maximum likelihood estimate output;

 

2 REPLIES 2
maguiremq
SAS Super FREQ

Your answer lies in the PARMLABEL option in the MODEL statement.

 

Here's a fabricated example:

 

proc sql;
	create table 	work.cars as
		select
					*,
					(
						select
									mean(msrp)
						from 
									sashelp.cars
					) as mean_msrp,
					case 
						when msrp < calculated mean_msrp then "1"
						else "0"
					end as flag
		from
					sashelp.cars;
quit;
					
proc logistic data = work.cars descending;
	model flag = enginesize cylinders;
run;
		
proc logistic data = work.cars descending;
	model flag = enginesize cylinders / parmlabel;
run;

maguiremq_0-1629122363289.pngmaguiremq_1-1629122380732.png

 

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 25. 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
  • 2 replies
  • 815 views
  • 0 likes
  • 3 in conversation