I'm having trouble graphing data with extremely large values.
Here is an example that reproduces the problem:
data dummy;
do i = 1 to 15;
y = 10**i;
output;
end;
run;
ods pdf file="problem.pdf";
proc sgplot data=dummy;
series x=i y=y / markers;
yaxis min=0 max=100;
run;
ods pdf close;
Everything looks as expected in results viewer: I see the first two points and the rest is blank.
But the PDF does not look the same. Here is a screenshot of the graph:
There are 3 vertical lines on the right that should not be there.
What's strange is that when I zoom out (e.g. yaxis min=0 max=100000), the location and number of these lines change. And if I do not restrict the zoom at all, they disappear.
I think the large numbers are somehow interacting with the upper yaxis max value.
Any ideas how I can get the pdf output to match the desired output in the results viewer?
System Info: SAS 9.4 TS Level 1M7 on Windows.
Thanks!
This issue seems to be addressed in SAS 9.4 TS level M8. As a workaround, you might be able to filter out the extreme values using a WHERE clause on the SGPLOT procedure.
If you are willing to accept different XAXIS labels this seems to "work"
proc sgplot data=dummy ; where y<10000; series x=i y=y / markers; yaxis min=0 max=100 ; xaxis values=(0 to 15 by 1); run;
But this approach may not work with your "real" data assuming this is a simplification of something else. I might ask why the extremely small limit on the min/max range given the range of the actual Y values.
If you only have a single or small number of values outside the range you want to display perhaps min and max filter correctly. But if most of the actual values are that large perhaps you want to look at a Type=LOG scale for the Y axis.
@AndrewB wrote:
I'm having trouble graphing data with extremely large values.
Here is an example that reproduces the problem:
data dummy; do i = 1 to 15; y = 10**i; output; end; run; ods pdf file="problem.pdf"; proc sgplot data=dummy; series x=i y=y / markers; yaxis min=0 max=100; run; ods pdf close;
Everything looks as expected in results viewer: I see the first two points and the rest is blank.
But the PDF does not look the same. Here is a screenshot of the graph:
There are 3 vertical lines on the right that should not be there.
What's strange is that when I zoom out (e.g. yaxis min=0 max=100000), the location and number of these lines change. And if I do not restrict the zoom at all, they disappear.
I think the large numbers are somehow interacting with the upper yaxis max value.
Any ideas how I can get the pdf output to match the desired output in the results viewer?
System Info: SAS 9.4 TS Level 1M7 on Windows.
Thanks!
This issue seems to be addressed in SAS 9.4 TS level M8. As a workaround, you might be able to filter out the extreme values using a WHERE clause on the SGPLOT procedure.
Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register 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.