I have installed the tidyverse package and currently working with the starwars data, the functions don't appear to be working

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

... with 4 variables: gender , mass ,

height , species .....any ideas how i can have the table showing the filtered data?

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.