I am using the group by and summarize functions in r but I am only getting a single line of data. The group by doesn't seem to be working. Any suggestions?
R Code:
NewGroup <- dataset1 %>% group_by (name) %>% summarize (mean = mean (age, na.rm = TRUE))
To help us help you, could you please prepare a reproducible example (reprex) illustrating your issue? Please have a look at this guide, to see how to create one: