Hi,
running EG4.3 on SAS92 on Windows.
I want to create a gplot with months on the horizontal axis, like:
work.x;
do date='01jan12'd to '31dec12'd;
actual=1000;
output;
end;
format date date9.;
run;
axis1 order='01jan12'd to '31dec12'd by month;
proc gplot data=work.x;
plot actual*date / haxis=axis1;
run;quit;
my graph looks like this:
the horizontal axis is strange, what did I do wrong?
thanks, Bart
hi ... first, you cannot do this by month ... axis1 order='01jan12'd to '31dec12'd by month;
since the end date does not allow an entire month interval and you will not get any dates in December other than 12/01
but you can do this ... axis1 order='01jan12'd to '01jan13'd by month;
second, I tried your code in both V9.1 and V9.3 and got the attached
they are both from V9.3 and they both worked better than what you are showing ... are you showing all the various options that are in place
did you try starting with GOPTIONS RESET=ALL;
ps I'm NOT using EG so I have no idea if that's the issue here
both your suggestions:
- to '01jan13'd
- goptions reset=all
solved the problem.
wrt 2, looks like eg sets some goptions that I'm not aware of.
thanks, Bart
Don’t miss the livestream kicking off May 7. It’s free. It’s easy. And it’s the best seat in the house.
Join us virtually with our complimentary SAS Innovate Digital Pass. Watch live or on-demand in multiple languages, with translations available to help you get the most out of every session.
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.