I'm trying to create a simple scatter chart with the Y axis log transformed. Reading the help documentation seems simple enough but it still creates a linear Y axis. What am I missing?
proc sgplot data=WORK.DATA;
SCATTER x=TIME_EACH_MEASUREMENT y=NUM_ERRS /
GROUP=Failure_Cause;
YAXIS TYPE=LOG LOGSTYLE=LOGEXPAND LOGBASE=10;
run;