Hello! I have some questions relating to proc tabulate. For the RealGDP data attached, I would like to use PROC TABULATE to create a table with the state abbreviations (postal) as the rows and the years (Y2012, Y2013, Y2014, Y2015) as the columns, and a table with the state abbreviations (postal) as the rows and the years (Y2012, Y2013, Y2014, Y2015) as the columns with each years’ minimum, mean, and maximum values. Also, for each table, I need a centered blue footnote with a height of 1 called 'Source: Bureau of Economic Analysis'. Here's what I have for now, but it doesn't print out a table, and I'm not sure where to go from this. For your information, I have already imported the original data into "gdp". title "Sum of Real GDP by Year";
proc tabulate data=gdp;
by Postal;
table Postal, Y2012*Y2013*Y2014*Y2015;
run;
title;
... View more