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.
Save $250 on SAS Innovate and get a free advance copy of the new SAS For Dummies book! Use the code "SASforDummies" to register. Don't miss out, May 6-9, in Orlando, Florida.
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.