Consider we have a data.frame
named IND
, in which we have a column called dept
. There are in total 100 rows and there are 20 distinct values in dept
.
Now I would like to obtain the summary statistics for these 20 subsets of data.frame
containing 5 rows each using the main data.frame
!
summary(IND)
gives the summary statistics for whole dataset but what should I do in my case?