|
On Sun, 24 Jun 2007 12:35:25 -0400, John James <free562james@YAHOO.COM> wrote:
>I have a country-year dataset including data on a number of countries for a
>number of years. I want to compute the correlation coefficient between two
>variables at the country level. Is it possible to do that use proc corr in
>sas?
Make sure your data set is sorted by country, then include
by country;
in the PROC CORR step.
|