首页 > 解决方案 > Need help on how to sort a tibble column by keyword in R

问题描述

I need help trying to figure out how to sort a tibble column by a keyword. I run the code and it returns a blank table. I want to keep the entries in the column containing "County" and remove the other entries.

countypop %>%
  select(county) %>%
  filter(county=="County")

标签: r

解决方案


推荐阅读