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

Is there a way to create lollipo chart such as the one shown below using SAS ?. What procedures should I use. I have SAS 9.3.

3-19-2015 5-59-19 PM.jpg

1 ACCEPTED SOLUTION

Accepted Solutions
Jay54
Meteorite | Level 14

Use SAS 9.3 PROC SGPANEL:  You have more options using SAS 9.4 or later.

proc means data=sashelp.cars;

class origin type;

vars mpg_city;

output out=cars(where=(_type_ =3))

  mean=MeanMpg;

run;

data cars;

  set cars;

  zero=0;

run;

proc print;run;

ods graphics / reset width=4in height=3in imagename='CarsPanel';

title 'Mileage by Origin and Type';

proc sgpanel data=cars noautolegend;

  panelby origin / layout=rowlattice novarname uniscale=column;

  highlow y=type low=zero high=meanmpg / group=type;

  scatter y=type x=meanmpg / group=type markerattrs=(symbol=circlefilled);

  colaxis offsetmin=0;

  rowaxis display=(nolabel noticks) valueattrs=(size=6);

run;

CarsPanel.png

View solution in original post

3 REPLIES 3
ballardw
Super User

It will help if you can provide some data to experiment with.

OS2Rules
Obsidian | Level 7

Hi,

Not a complete answer, but you should look into this site:  http://blogs.sas.com/content/graphicallyspeaking/

They have a lot of grahphs with sample code and somewhere there is an index of all the graphs - might be worth a look.

Jay54
Meteorite | Level 14

Use SAS 9.3 PROC SGPANEL:  You have more options using SAS 9.4 or later.

proc means data=sashelp.cars;

class origin type;

vars mpg_city;

output out=cars(where=(_type_ =3))

  mean=MeanMpg;

run;

data cars;

  set cars;

  zero=0;

run;

proc print;run;

ods graphics / reset width=4in height=3in imagename='CarsPanel';

title 'Mileage by Origin and Type';

proc sgpanel data=cars noautolegend;

  panelby origin / layout=rowlattice novarname uniscale=column;

  highlow y=type low=zero high=meanmpg / group=type;

  scatter y=type x=meanmpg / group=type markerattrs=(symbol=circlefilled);

  colaxis offsetmin=0;

  rowaxis display=(nolabel noticks) valueattrs=(size=6);

run;

CarsPanel.png

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

Register now!

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
  • 2176 views
  • 0 likes
  • 4 in conversation