BookmarkSubscribeRSS Feed
shez
Calcite | Level 5

How can I make a scatter plot of 2 variables in sas and add an inset to it with the pearson coefficient and p.value.

8 REPLIES 8
DanH_sas
SAS Super FREQ

If you know the coefficient and p-value, you can do this:

proc sgplot data=sashelp.class;
   scatter x=weight y=height;
   inset ("Pearson" = "<value>" "P-value" = "<value>");
run;

Hope this helps!

Dan

shez
Calcite | Level 5

Thank you Dan. But in this way I have to first run the statistics and then key in the values.

Is there a way in which sas would do both (statistics + plot with inset) for me in one go?

DanH_sas
SAS Super FREQ

What statistics procedure are you using for the calculations?

shez
Calcite | Level 5

I am new to sas, but my guess is I would use proc corr.

PaigeMiller
Diamond | Level 26

How can I make a scatter plot of 2 variables in sas and add an inset to it with the pearson coefficient and p.value.

PROC CORR will do this, using ODS Graphics

--
Paige Miller
shez
Calcite | Level 5

Can you give more details about how to write the code? I am very new to sas.

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!

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
  • 8 replies
  • 9455 views
  • 0 likes
  • 3 in conversation