BookmarkSubscribeRSS Feed
asifgeneral
Calcite | Level 5

Hi.

 

How can do a log transformation of a variable if the distribution is not symmetric. Is there a proc for that?

 

Thanks, Asif  

1 REPLY 1
ballardw
Super User

You may want to describe more of what you are doing and where you need a transform, especially since you question references symmetry of distribution.

 

The basic data step function Log will transform values in the appropriate domain, best creating a new variable.

 

data want;
   set have;
   logvariable = log(variable);
run;

 

hackathon24-white-horiz.png

The 2025 SAS Hackathon Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

What is ANOVA?

ANOVA, or Analysis Of Variance, is used to compare the averages or means of two or more populations to better understand how they differ. Watch this tutorial for more.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 1 reply
  • 1142 views
  • 2 likes
  • 2 in conversation