Counting number of levels within another variable level in data frame

492 Views Asked by At

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.

3

There are 3 best solutions below

1
On BEST ANSWER

How about this?

data.frame %>%
   group_by(state) %>%
   summarize(distinct_birds = n_distinct(data.frame$bird))
0
On

This will be very simple using data.table

library(data.table)
dt=data.table(data.frame)

dt[,counts:=.N, by=.(state,birds)]
  • .N is the data.table function to get counts
  • by include grouping variables.
0
On

Also using tidyverse:

library(tidyverse)

data.frame %>% count(state)