Proc Corr

Correlations.

Proc Corr Data=work.A Pearson Spearman Kendall;
    Var age;
    With wisdom ;
Run;

Proc Plot;
    Plot age*wisdom;
Run;