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

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

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
  • 9551 views
  • 0 likes
  • 3 in conversation