Published
Edited
Jul 19, 2019
Insert cell
Insert cell
Insert cell
rschedule = import('@rschedule/rschedule@0.11.3')
Insert cell
// standardAdapter = import('https://unpkg.com/@rschedule/standard-date-adapter@0.11.0/build/module.js?module')
standardAdapter = import('@rschedule/standard-date-adapter@0.11.0')
Insert cell
rschedule.RScheduleConfig.defaultDateAdapter = standardAdapter.StandardDateAdapter;
Insert cell
Insert cell
schedule = new rschedule.Schedule({
rrules: [
{
start: new Date(2014, 0, 2),
frequency: "YEARLY",
duration: 1000 * 60 * 60 * 6, // Add 6 hours, duration is specified in milliseconds
count: 10
}
],
rdates: [new Date(1800,10,23)],
exdates: [new Date(1900,10,23)],
exrules: [
{
start: new Date(2019, 0, 2),
frequency: "YEARLY",
duration: 1000 * 60 * 60 * 6, // Add 6 hours, duration is specified in milliseconds
count: 5
}
],
dateAdapter: standardAdapter.StandardDateAdapter,
} );
Insert cell
Insert cell
schedule.occurrences().toArray().map(adapter => adapter.date.toLocaleString());
Insert cell
Insert cell
scheduleNoExrule = schedule.remove('exrule', schedule.exrules[0])
Insert cell
scheduleNoExrule.occurrences().toArray().map(adapter => adapter.date.toLocaleString());
Insert cell
Insert cell
Insert cell
scheduleNoExruleNoExdate = scheduleNoExrule.remove('exdate', scheduleNoExrule.exdates.datetimes[0])
Insert cell
Insert cell
scheduleNoExruleNoExdate.occurrences().toArray().map(adapter => adapter.date.toLocaleString());
Insert cell
Insert cell
scheduleNoExruleNoExdate.exdates.datetimes
Insert cell
Insert cell
Insert cell
scheduleNoExruleNoExdateNoRrule = scheduleNoExruleNoExdate.remove('rrule', scheduleNoExruleNoExdate.rrules[0])
Insert cell
scheduleNoExruleNoExdateNoRrule.occurrences().toArray().map(adapter => adapter.date.toLocaleString());
Insert cell
Insert cell
scheduleNoExruleNoExdateNoRrule.remove('rdate', scheduleNoExruleNoExdateNoRrule.rdates.datetimes[0]).occurrences().toArray().map(adapter => adapter.date.toLocaleString());
Insert cell
Insert cell

One platform to build and deploy the best data apps

Experiment and prototype by building visualizations in live JavaScript notebooks. Collaborate with your team and decide which concepts to build out.
Use Observable Framework to build data apps locally. Use data loaders to build in any language or library, including Python, SQL, and R.
Seamlessly deploy to Observable. Test before you ship, use automatic deploy-on-commit, and ensure your projects are always up-to-date.
Learn more