BookmarkSubscribeRSS Feed
Linlin
Lapis Lazuli | Level 10

How Can I create the same graph in EG? not by running the same sas code but by using Tasks -> Graph

Thank you!

proc sgplot data=sashelp.class nocycleattrs;

  histogram height / legendlabel='height' fillattrs=graphdata1  transparency=0.3;

  density height  / legendlabel='height'  lineattrs=graphdata1(pattern=solid) name='1';

  histogram weight / legendlabel='weight' fillattrs=graphdata2  transparency=0.3;

  density weight  / legendlabel='weight2' lineattrs=graphdata2(pattern=solid) name='2';

  keylegend '1' '2' / across=1 location=inside position=topright;

  xaxis display=(nolabel);

  run;


SGPlot.png
2 REPLIES 2
Cynthia_sas
SAS Super FREQ

Hi:

  I'm not sure you can generate the same graph using Tasks. I believe that Tasks --> Graphs will only surface SAS/GRAPH procedures, which does not have quite the same overlay capability as the SG procedures. You might be able to do this with creative use of the ANNOTATE facility, but the SGPLOT code is much easier to use because of the HISTOGRAM and DENSITY statements along with the overlay capability.

  I think if you use Tasks --> Describe --> Distribution Analysis, then you can get 1 histogram; but for 2 overlaid with the procedure that EG uses (I think it's UNIVARIATE), I am pretty sure that you can't get a fancy overlay like you can with the SG procedures.

cynthia

Linlin
Lapis Lazuli | Level 10

Thank you Cynthia! It is good to know. There are no options for me to mark you answer now. It is so strange.

sas-innovate-2024.png

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

Register now!

SAS Enterprise Guide vs. SAS Studio

What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.

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
  • 2 replies
  • 739 views
  • 0 likes
  • 2 in conversation