I'm switching from R to SPSS for a specific project (I'm not allowed to use SPSS/R integration) and need to summarize quickly a big dataset. In R, it's quite simple, one can use the summary() function and in few seconds obtain the summary of each variable. I would need to know if there is a function in SPSS that do the same job. If not, how could I achieve it.
For the non-R users summary.default
would return labelled values for Min. , 1st Quartile, Median, Mean , 3rd Quartile, Max.
for each numeric column and a counts of the 6 most common items and the count of the "(Other)" category if a factor or character variable.