BookmarkSubscribeRSS Feed
MinKhee
Calcite | Level 5

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;

 

 

 

1 REPLY 1

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

How to Concatenate Values

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 1 reply
  • 1077 views
  • 0 likes
  • 2 in conversation