how do i group by male and female when sex is the variable when doing IDQ, Mode, skew and kurtosis

Nhis7 %>% group_by(sex) %>%
summarise(sd = sd(hourssleep, na.rm = T),
median = median(hourssleep, na.rm = T),
range = paste(min(hourssleep, na.rm = T), "-", max(hourssleep, na.rm = T)),
n = sum(!is.na(hourssleep)))
this worked for sd, mean, and range but I have no idea how to split up hours sleep by sex for skew, kurtosis , coefficient of variation, quintiles.

this is my first ever computer class!! thanks!!!

laura

Hi @Laurabell.
Welcome to the RStudio Community Forum.

Google is your friend! Try searching for

calculate skewness in R

You are already splitting your dataset using the group_by() function.

This topic was automatically closed 42 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.