Hello All,
Does any one know calculate cube root?
Thank you so much!
Bo
One way is to use the ** operator:
Data _null_;
x = 27**(1/3);
put x;
run;
1/3 power being the equivalent of cube root.
One way is to use the ** operator:
Data _null_;
x = 27**(1/3);
put x;
run;
1/3 power being the equivalent of cube root.
Hi Ballardw,
It works. Thank you for your tip.
Bo
Dive into keynotes, announcements and breakthroughs on demand.
Explore Now →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.