Question: Change this code to PROC TABULATE, PROC REPORT, PROC SQL make sure to round up the results and remove type and freq from the table

Change this code to PROC TABULATE, PROC REPORT, PROC SQL make sure to round up the results and remove type and freq from the table results.
PROC MEANS DATA=Excluding_Territories MEAN MEDIAN MAX NOPRINT;
VAR NewCases;
CLASS State;
OUTPUT OUT=results MEAN(NewCases)=MeanCases MEDIAN(NewCases)=MedianCases MAX(NewCases)=MaxCases;
RUN;
DATA results;
SET results;
DROP TYPE FREQ;
MeanCases = ROUND(MeanCases,1);
MedianCases = ROUND(MedianCases,1);
MaxCases = ROUND(MaxCases,1);
run;
PROC PRINT DATA=results;
RUN;

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!