biweekly

make 'week' function biweek

☆樱花仙子☆ 提交于 2021-02-11 16:54:14
问题 Hi all this should be a straightforward question, I just can't seem to figure it out. I would like to break up this data set biweekly in order to look at the annual cycle in 2 week intervals. I do not want to summarize or aggregate the data. I would like to do exactly what the 'week' function is doing, but every 2 weeks instead. Below is an example of the data and code. Any help would be greatly appreciated! DF<-dput(head(indiv)) structure(list(event.id = 1142811808:1142811813, timestamp =

Using Sardines report method to query events from CalDAV server

房东的猫 提交于 2019-12-24 06:30:01
问题 I'm trying to fetch events from a CalDAV server using Sardine (and biweekly). Fetching an entire calendar is working for me: Sardine sardine = SardineFactory.begin(); InputStream is = sardine.get(CALDAV_URL_STRING); ICalendar iCalendar = Biweekly.parse(is).first(); Now I would like to fetch events for specific time range. Based on this "Building a CalDAV client" article, I assume you should use Sardines report method to do so, right? If so, how should you use that method? It's not documented