data have;
call streaminit(123);
do date='04jan2020'd to '01jun2020'd;
y=rand('uniform');output;
end;
format date date9.;
run;
proc sgplot data=have;
series x=date y=y;
xaxis type=linear values=('04jan2020'd to '01jun2020'd by week) fitpolicy=rotate ;
run;
Thank you!
Is there a way to do the same process but with a date format mmddyy8. ?
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.