BookmarkSubscribeRSS Feed
Lou523
Calcite | Level 5
How do I get SAS to print an ellipse plot as square, size n by n? Regardless of axis range for either x or y, each axis should have the same length (ie. 5") on the figure generated / printed. SAS ellipse plots printed in landscape are NOT the same (different angle of rotation, major and minor axis are not perpendicular, etc) as ellipse plots in a square. SAS ellipse plots in landscape are not correct - only distortions of an ellipse plot in a square.


proc sgplot data=WORK;
scatter x=afp y=ue3;
ellipse x=afp y=ue3 /alpha=0.05;
run;


Thanks,
Lou
4 REPLIES 4
GraphGuy
Meteorite | Level 14
Hopefully one of the sgplot experts can give you an answer.

But, if you can't find a way to do it in sgplot, you might give gplot a try - you can specify a length (in inches) in the axis statements, and it will generally try to honor that (thereby giving you a way to keep the axes & your plot proportional).

As an example, below is the code for a "spiral" time-series plot - I wanted to keep the 2 axes proportional (whether title statements got added, etc) so that the spiral would not look "squished".

-----

http://robslink.com/SAS/democd46/spiral_info.htm



Message was edited by: Robert Allison @ SAS Message was edited by: Robert Allison @ SAS
Lou523
Calcite | Level 5
Thanks - I'll give this a try. Lou
DanH_sas
SAS Super FREQ
Currently, the SG procedures do not support equated axes but the Graph Template Language (GTL) does. Here is a very simple example to get you started. Details for the template language can be found in the documentation.

Thanks!
Dan

[pre]
proc template;
define statgraph square;
begingraph;
layout overlayequated / equatetype=square;
scatterplot x=weight y=height;
ellipse x=weight y=height / alpha=0.05 type=predicted;
endlayout;
endgraph;
end;
run;

proc sgrender data=sashelp.class template=square; run;
[/pre]
Lou523
Calcite | Level 5
Thanks - I'll give this a try. Lou

SAS INNOVATE 2024

Innovate_SAS_Blue.png

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. 

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.

Get the $99 certification deal.jpg

 

 

Back in the Classroom!

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

View all other training opportunities.

Discussion stats
  • 4 replies
  • 2030 views
  • 0 likes
  • 3 in conversation