I have something like this:
# A tibble: 24,288 x 1
Country/Region
Afghanistan
Albania
Algeria
Andorra
Angola
Antigua and Barbuda
Argentina
Armenia
Australia
Australia
... with 24,278 more rows
How can I count the different values in this tibble?
n_distinct(df$`Country/Region`)
orlength(unique(df$`Country/Region`))
oruniqueN(df$`Country/Region`)
? All of them count distinct values in the column. – Ronak Shah