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