We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello Andrie,
I'm encountering problems to extract information from events that last several days.
Here is an example of an event that lasts 2 full days (i.e. 2021-02-09 and 2021-02-10).
Her is my code:
library(gcalendr) library(dplyr) my_cal_id <- "[email protected]" calendar_auth(my_cal_id) events <- calendar_events(my_cal_id, days_in_past = 0, days_in_future = 365) events %>% filter(start_date == "2021-02-09") %>% select(start_date, end_date)`
The calendar_events() function returns for this event : start_date = 2021-02-09 and end_date = 2021-02-09
calendar_events()
start_date = 2021-02-09
end_date = 2021-02-09
And not start_date = 2021-02-09 and end_date = 2021-02-10
end_date = 2021-02-10
Is there another solution for this kind of problematic?
Thanks in advance,
Margot
The text was updated successfully, but these errors were encountered:
Fix andrie#11
43acb28
No branches or pull requests
Hello Andrie,
I'm encountering problems to extract information from events that last several days.
Here is an example of an event that lasts 2 full days (i.e. 2021-02-09 and 2021-02-10).
Her is my code:
The
calendar_events()
function returns for this event :start_date = 2021-02-09
andend_date = 2021-02-09
And not
start_date = 2021-02-09
andend_date = 2021-02-10
Is there another solution for this kind of problematic?
Thanks in advance,
Margot
The text was updated successfully, but these errors were encountered: