2
Hello, I am a basic SAS user and I need to create a table in R, but I am very lost in R.
The command given in SAS is
DATA MEDIAS; SET TEMP;
PROC MEANS N MEAN MIN MAX STD;
VAR a1 a2 b1 b2 c1 c2 T R E;
RUN;
No sas he releases me this table:
So far in R I was able to insert the data as a data frame with the variables, but I need it to organize these variables in column, and release the number of observations of each, the averages, the maxima the minima and the standard deviation. I have lost data in that file that are already in NA format.
Could someone help me with the R code?