BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
yael
Quartz | Level 8

Hello 

 

I am tring to add a new variable with the following code:

 

data new; set sasuser.hed1;
lncapax = ln(capaxass);
run;

 

The log I got is:

NOTE: The SAS System stopped processing this step because of errors.
WARNING: The data set WORK.NEW may be incomplete. When this step was stopped there were 0
observations and 183 variables.
NOTE: At least one W.D format was too small for the number to be printed. The decimal may be shifted
by the "BEST" format.

I believe the reason is that there is observation with 0 value and the ln of it is an error. How can I fix it?

 

Thanks a lot!

1 ACCEPTED SOLUTION

Accepted Solutions
PeterClemmensen
Tourmaline | Level 20

Use the LOG function instead of LN when you want the natural logarithm.

 

And remember that the logarithm is defined only for values >0. You can not take the logarithm of zero or a negative number.

View solution in original post

1 REPLY 1
PeterClemmensen
Tourmaline | Level 20

Use the LOG function instead of LN when you want the natural logarithm.

 

And remember that the logarithm is defined only for values >0. You can not take the logarithm of zero or a negative number.

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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
  • 1295 views
  • 0 likes
  • 2 in conversation