Hi, I am trying to build a gantt chart using sas university edition. But it can only build by using proc sgplot. I am wondering if annotate can be used in SAS University Edition. This is my data code:
data mychart;
length activity $20;
input activity $1 day;
project= 'Activity' || trim (left(activity));
datalines;
A 2
B 4
C 10
D 6
E 4
F 5
G 7
H 9
I 7
J 8
K 4
L 5
M 2
N 6
;
run;
proc sort data=mychart;
by day;
run;
There are a few articles in Graphically Speaking on creating such diagrams using SGPLOT. Here are a couple.
http://blogs.sas.com/content/graphicallyspeaking/2015/03/21/sankey-diagrams/
http://blogs.sas.com/content/graphicallyspeaking/2013/10/31/schedule-chart-with-links/
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.