Hi,
I came across the following Put statements to convert from numerical to character:
char_var = put(num_var,6.);
apple1 = put(apple, 6);
Run;
apple1 = put(apple, best6.);
Run;
Both statements will produce the same result.
My question are (1) why there are different syntax which can produce the same output, (2) what is the 'best' means, and (3) how do we know what is the value to put in the w.d format?
Thank you.
The statements will NOT produce the same result.
Run this and look at the result:
data test;
input numvar;
charvar1 = put(numvar,6.);
charvar2 = put(numvar,best6.);
cards;
1
6000
6.5431
1534.21
1109998
;
run;
Note obs 3 and 4
As for your question 3:
Maxim 3: Know your data.
Inspect your dataset, run some statistics to see maximum and minimum values, see if x-int(x) gives you fractions, and so on.
@potiu wrote:
(1) why there are different syntax which can produce the same output,
There is A LOT of 'different' syntax that can produce the same output.
FYI - this is a PUT() function, there is a PUT statement and they do differ.
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!
Get started using SAS Studio to write, run and debug your SAS programs.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.