BookmarkSubscribeRSS Feed
jlevin
Calcite | Level 5

Hi,

 

I'd like the count of the landslide types to be log transformed on the y axis.  I am still new to SAS, but to my understanding this should work:

 

proc sgplot data=landslide3;
vbar landslide_type;
yaxis type=log logbase=10 logstyle=logexpand;
run;

 

However this is the graph I am getting.  The axis stil seems to just be counting the frequency with no log transformation.  If anyone could help steer me in the right direction with the code to plot frequency with a log transformation that would be awesome.

Screen Shot 2017-09-08 at 10.52.57 PM.png

 

 

 

2 REPLIES 2
WarrenKuhfeld
Ammonite | Level 13

Allways look at the log.

 

NOTE: The log axis cannot support zero or negative values for the axis from plot data or due
to default or assigned BASELINEINTERCEPT value. The axis type will be changed to LINEAR.

 

Here is a possible work around.

 

proc sgplot data=sashelp.gas;
   vbar fuel / baseline=1e-8;
   yaxis type=log logbase=10 logstyle=logexpand;
run;
 
jlevin
Calcite | Level 5

Thank you so much, that worked.  Much appreciated.

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

SAS Enterprise Guide vs. SAS Studio

What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 1716 views
  • 2 likes
  • 2 in conversation