I have a data frame with two character variables, state and birds. I'm trying to see how many bird types are within each state. I have tried:
data.frame %>%
group_by(state) %>%
n_distinct(data.frame$bird)
data.frame %>%
group_by(state) %>%
n_distinct(unique(data.frame$bird))
However, I am very stuck. Thank you in advance for your help; let me know if I need to add more clarification.
How about this?