What is the logic behind the PUT function to convert a numeric variable to character variiable?
consider two examples;
data temp;
value = 0.5500;
value1 = put(value, 16.1);
run;
the above code correctly prints the value of value1 as 0.6 in the output dataset.
But in some scenarios, the value1 in the output dataset is being printed as 0.5(gets truncated instead of rounding). I couldnt identify where the issue is. could someone please help?
Thanks.
I will take a guess: numeric precision.
thank you Arthur. How we can resolve this?
The W.D format does not always round correctly. The "classic" example to me is -0.0 below. To solve it, round the value to the desired precision before using PUT function.
How does x resolve in your code? You've used comma between the values so I'm not sure how it calculates.
x = .33+.2199999999999995,-1e-16;
It is iterative DO specifications connected by COMMA.
denotes an expression or a series of expressions in this form
in this case with only the START values specified similar to DO I=1,10,20; each comma specifies a separate specification.
START STOP and BY can all be expressions as in this case add two numeric constants .33+.219999 comma then another expression (a numeric constant) -1E-16
The DO iterates 2 times.
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
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.