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

I want to get RMSE of a correlation plot vs. a linear fit  with slope=1 / intercept=0.

JMP can do it, but its hard if I'm using lots of by groups.

Below is the example using JMP

Fit Y by X.jpg

Thanks!

1 ACCEPTED SOLUTION

Accepted Solutions
gergely_batho
SAS Employee

proc sort data=sashelp.class out=class;by sex;run;

proc reg data=class;

  by sex;

  model weight=height / noint;

  restrict height=1;

run;

quit;

View solution in original post

2 REPLIES 2
gergely_batho
SAS Employee

proc sort data=sashelp.class out=class;by sex;run;

proc reg data=class;

  by sex;

  model weight=height / noint;

  restrict height=1;

run;

quit;

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 1460 views
  • 0 likes
  • 2 in conversation