Questions: Load the brexit_polls data frame from dslabs: How many polls had a start date (startdate) in April (month number 4)?*
The start date data within brexit_polls data set has multiple years as points but I want to filter only for the month of April.
I have tried using a a regex then april <- brexit_polls %>% regex(startdate,"....-04-..")
I also tried using the tibbletime package but it wouldn't load to my R. Any suggetions?