I am new to R studio

Good.

And this is working as well?

library(tidyverse)
mpg %>% select(manufacturer)
#> # A tibble: 234 x 1
#>    manufacturer
#>    <chr>       
#>  1 audi        
#>  2 audi        
#>  3 audi        
#>  4 audi        
#>  5 audi        
#>  6 audi        
#>  7 audi        
#>  8 audi        
#>  9 audi        
#> 10 audi        
#> # ... with 224 more rows

If this is works as well. Could you post a reprex?

A reprex is the preferred way to show folks exactly what you're trying to do, and it'll reproduce any output or error messages you encounter along the way as well, FAQ: What's a reproducible example (`reprex`) and how do I do one?. (copied this sentence from a message by EconomiCurtis in another thread)

1 Like