powered by
Returns the season of an array of dates.
find_season( dates, winter = "12-21", spring = "3-20", summer = "6-21", fall = "9-22" )
Array of dates.
month-day of winter solstice.
month-day of spring equinox.
month-day of summer solstice.
month-day of fall equinox.
season
https://stackoverflow.com/questions/9500114/find-which-season-a-particular-date-belongs-to
# NOT RUN { library(psycho) dates <- c("2012-02-15", "2017-05-15", "2009-08-15", "1912-11-15") find_season(dates) # }
Run the code above in your browser using DataLab