Hello,
I am trying to create an animated SGPlot-plot following the instructions on http://support.sas.com/documentation/cdl/en/graphref/67881/HTML/default/viewer.htm#p0akj7ltqqbhqun1n... - or not following the instructions if you will (because it does not work).
I would like the plot to be build in 3 steps. How can I put the code right?
Data A (Drop=i);
Retain Date '01JAN2000'd; Format Date Date9.;
Do i=1 To 100;
Date=IntNX('month',Date,1,'same');
Value=Rand('uniform')+1;
Output;
End;
Run;
Options Animduration=10
Animloop=YES
Animoverlay;
Options Animate=START;
ODS HTML File='C:\Test.HTML';
Proc SGPlot Data=A (Where=(Date lt '01JAN2003'd));
Series X=Date Y=Value;
YAxis Min=0;
XAxis Max='01JAN2010'd;
Run;
Proc SGPlot Data=A (Where=(Date lt '01JAN2006'd));
Series X=Date Y=Value;
YAxis Min=0;
XAxis Max='01JAN2010'd;
Run;
Proc SGPlot Data=A;
Series X=Date Y=Value;
YAxis Min=0;
XAxis Max='01JAN2010'd;
Run;
Options Animate=STOP;
ODS HTML Close;
Thanks&kind regards
See animation example here: http://blogs.sas.com/content/graphicallyspeaking/2013/05/23/animation-using-sgplot/
GIF animations can be created using the options shown. You will have to create successive graphs with the animation you want.
See animation example here: http://blogs.sas.com/content/graphicallyspeaking/2013/05/23/animation-using-sgplot/
GIF animations can be created using the options shown. You will have to create successive graphs with the animation you want.
Is it possible to remove the creation time/date?
Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.
If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website.
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.