hI,
My pvalue has value like : 0.000082634.
But I need to convert it into 8.26E-5. Could anyone please let me know how to do this?
Thanks,
Megha
Hi. If you are asking how to display that value in scientific notation, use a format ...
data _null_;
x = 0.000082634;
put x e9.;
run;
If you are really asking how to convert numeric a numeric value, it's an odd question since SAS stores all numeric values in the same manner (unless you start playing with numeric value lengths). It's just the display of the value that you can alter.
Hi. If you are asking how to display that value in scientific notation, use a format ...
data _null_;
x = 0.000082634;
put x e9.;
run;
If you are really asking how to convert numeric a numeric value, it's an odd question since SAS stores all numeric values in the same manner (unless you start playing with numeric value lengths). It's just the display of the value that you can alter.
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.