You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the semester() accessor function from lubridate does not have an option for more than two semesters per year. It would be helpful if the function offered the option to set the number of semesters and start dates, or at the very least offer a trimester option, with the spring, summer, and fall semesters starting on January 1, May 1, and August 1 (typical start dates at large state universities). Thank you for your time and consideration.
The text was updated successfully, but these errors were encountered:
It should be a new function, multimester or varimester, something that would accept a range of months, in your example c(1, 5, 8).
Right now you can floor_date to a date vector (unit argument). So you can construct a vector of 1st of Januarys, Mays, and Augusts and round to those.
Something like this:
Currently, the
semester()
accessor function fromlubridate
does not have an option for more than two semesters per year. It would be helpful if the function offered the option to set the number of semesters and start dates, or at the very least offer a trimester option, with the spring, summer, and fall semesters starting on January 1, May 1, and August 1 (typical start dates at large state universities). Thank you for your time and consideration.The text was updated successfully, but these errors were encountered: