- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Hi community,
I'm struggling to find the best way to calculate the Reduced major axis regression between two variables.
Is there a proc command for this?
thanks in advance
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
http://support.sas.com/kb/30/333.html
Paige Miller
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
im new to stats and SAS (student) so would you mind elaborating on what the values should be and what should remain unchanged in the formula?
eg is y for y axis variable? what needs to be subbed into b1 or abs (if anything)? etc
proc nlp; min area; parms b1=1, b0=1; area=(y - (b0 + b1*x))**2 / abs(b1); run;
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Y is the name of your response variable.
X is the name of your predictor variable.
If the SAS data set that contains your data has different variable names, then you substitute the actual variable names in place of X and Y.
Paige Miller
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Hi Paige,
is there a way to do this university edition? I just found that this proc isnt available in this edition..
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content