BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Jmbuote
Calcite | Level 5

Hi,

 

can anyone help me to transform this SAS code to fit SAS STUDIO which does not have the GLPOT program.

 

SYMBOL2 I=join V=none C=blue h=1;
SYMBOL1 I=none V=dot C=red h=0.4;
PROC GPLOT DATA=cbd.ws_cb1;
PLOT mls*rcs=1 y*x=2 / overlay;
RUN;

 

Thanks,

 

J

1 ACCEPTED SOLUTION

Accepted Solutions
Reeza
Super User
SAS Studio does support GPLOT, SAS University Edition does not have a license to GPLOT - it's outdated. SAS OnDemand for Academics does include GPLOT and is on SAS Studio as well.

Not sure if I have the x/y's right but the following should get you started.

proc sgplot data=cbd.ws_cb1;
series x = rcs= mls;
scatter x=x y=y;
run;

View solution in original post

3 REPLIES 3
Reeza
Super User
SAS Studio does support GPLOT, SAS University Edition does not have a license to GPLOT - it's outdated. SAS OnDemand for Academics does include GPLOT and is on SAS Studio as well.

Not sure if I have the x/y's right but the following should get you started.

proc sgplot data=cbd.ws_cb1;
series x = rcs= mls;
scatter x=x y=y;
run;
Jmbuote
Calcite | Level 5

Same problem with this. Can you help?

 

PROC GPLOT DATA=cbd.outlier_CB1;
BUBBLE dev*riskscore=lddeces / CFRAME=white ANNOTATE=inf VAXIS=axis1 HAXIS=axis2 FRAME VREF=-3 0 3 VMINOR=0 HMINOR=0 CAXIS=black BCOLOR=red BSIZE=12;
AXIS1 lABEL=(A=90 R=0 F="ARIAL") WIDTH=2;
RUN;

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 3 replies
  • 944 views
  • 0 likes
  • 2 in conversation