Partial Correlation
I have four variables pp, ph, ngl & yield. Suppose I want to find out Partial Correlation between NGL and yield after removing the linear effect of PP and PH. In Base SAS I can find out by using the following given code.
/*BASE SAS Code*/
proc corr;
var ngl yld;
partial pp ph;
run;
But In JMP, When i go to Analyze -> Multivariate Methods -> Multivariate. I selected all the variables and click OK. ...