I have something like
data one;
merge dataset1 dataset2;
.................
if var=1 then var='large';
else var='small';
run;
Now, the variable var is extracted from datasets 1 and 2 with a numeric format;however 'large' and 'small' are character and this generates errors.
How can I transform from numeric to character within the data step as created above?
I tried adding "format var $6.;" but this did not solve the problem.
proc format ;
value size 1='large' other='small';
run;
proc sgplot;
by var;
format var size. ;
run;
Do you really want to assign new values? Or, on the other hand, do you simply want the character values to appear in lists, reports and or analyses? If it is the latter, you can create and assign a format.
I want to use the variable in
proc sgplot;
by var;
So yes, I do no necessarily need to assign new values, but I need more info.
proc format ;
value size 1='large' other='small';
run;
proc sgplot;
by var;
format var size. ;
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 lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.