Hi, I don't know if you can still help me.
I have accomplished to put all the months into years, then I tried to make one data with all the info but I think is too much information because my Rstudio crashed when I did the rbind () for the three years.
So I decided to take some columns away and just keep the ones that I need. So I tried this:
year_2021_Sm <- year_2021 %>%
select(rideable_type, started_at, ended_at, start_station_name, end_station_name, member_casual) %>%
View()
```
But It doesn't create new data it creates a Value with Null in the environment pane...
I have been looking around for how to do it, I tried subset, but it tells me that cannot find the functionyear_2020, which is the data that I'm trying to make smaller.
Also tried data.frame but that one went really bad... hehe
Can you recommend to me how to make new data but with fewer columns?