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. ?
Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9.
Lock in the best rate now before the price increases on April 1.
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.