I have installed the tidyverse package and currently working with the starwars data. When I give the command... select(gender, mass, height, species) %>%
filter(species == "human") . There is no table shown in the console with the filtered data all i am getting is # A tibble: 0 x 4
The data specifies "Human":
library(tidyverse)
starwars %>%
select(gender, mass, height, species) %>%
filter(species == "Human")
This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.