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.
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.