Q. In dplyr, how do you calculate the mean of a numeric variable named score for each group using summarize()?
β
Correct Answer: (D)
summarize(mean_score = mean(score))
You must be Logged in to update hint/solution