I have a large dataset and I want to filter out every row that has a certain value for year. I'm using R for the first time
I searched a lot for it online and this is what it got me. My dataset is called matches.
library(tidyverse)
matches %>%
filter(Jaar.x > 1619 & Jaar.y < 1812) %>%
select(match, Jaar.x, Jaar.y)
This works fine, but just shows a tibble with all values. However, the data in the right upper side of my screen doesn't change, and I can't seem to make a data frame of this tibble I just created. How do I do this?