Hello,
It's as simple as this (see program below).
I use the dataset sashelp.fish , which is a sample dataset everybody has.
Hence, you can run below code as well.
Look at the output. It will be clear to you!
proc corr data=sashelp.fish PEARSON PLOTS=SCATTER;
var Weight Height;
run;
Regards,
Koen
... View more