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?
this is the maximum likelihood estimate output;
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;
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and save with the early bird rate—just $795!
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.
Ready to level-up your skills? Choose your own adventure.