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

For example, after running the following code I see that the variable "very_long_variable_name" gets cut off to "very_long_variable_n" in the Parameter column of the ParameterEstimates ods output datset.

 

Usually this isn't an issue, except in my current project I have several long variable names I'd like to retain. I've also noticed other SAS procedures such as proc means or proc reg don't truncate variable names in the ods output.

 

data test;
input y very_long_variable_name;
cards;
10 17
20 41
30 59
;
run;

ods trace on;
proc genmod data=test;
	model y = very_long_variable_name;
	ods output ParameterEstimates=reg_output;
run;
1 ACCEPTED SOLUTION
4 REPLIES 4
maguiremq
SAS Super FREQ

This probably provides a better explanation than I can. I know other PROCs have things like PARMLABEL and what not.

RobertWF1
Quartz | Level 8
Thanks Michael - this is helpful although looks like it applies to name literals.

I'm trying something along the lines of:

ods trace on;
proc genmod data=test;
model y = very_long_variable_name;
ods output ParameterEstimates=reg_output (length Parameter $ 32);
run;

But so far this isn't working.

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 4 replies
  • 1192 views
  • 6 likes
  • 3 in conversation