Skip to contents

Create calendar demo data for schedules and properties

Usage

cal_demo_data(view = c("month", "week", "day"))

cal_demo_props()

Arguments

view

Calendar view for which to use the data.

Value

a data.frame.

Examples


# Monthly schedule
cal_demo_data("month")
#>    calendarId        title                    body recurrenceRule
#> 1           1        Sport  Go to sport every week     Every week
#> 2           1        Sport  Go to sport every week     Every week
#> 3           1        Sport  Go to sport every week     Every week
#> 4           1     Week-end   Week-end with friends           <NA>
#> 5           2    Project 1       Coding cool stuff           <NA>
#> 6           2    Project 2       Coding cool stuff           <NA>
#> 7           2    Project 3       Coding cool stuff           <NA>
#> 8           3   Training 1       Learn programming           <NA>
#> 9           3   Training 2       Learn programming           <NA>
#> 10          2      Meeting Meeting with John Smith           <NA>
#> 11          2        Lunch     Lunch with Jane Doe           <NA>
#> 12          3   Conference       Cool R conference           <NA>
#> 13          4 Mum birthday          Dont forget!!!           <NA>
#>                  start                 end category          location
#> 1  2024-03-05 20:00:00 2024-03-05 22:00:00     time              <NA>
#> 2  2024-03-12 20:00:00 2024-03-12 22:00:00     time              <NA>
#> 3  2024-03-19 20:00:00 2024-03-19 22:00:00     time              <NA>
#> 4           2024-03-09          2024-03-10   allday              <NA>
#> 5           2024-03-04          2024-03-05   allday              <NA>
#> 6           2024-03-05          2024-03-08   allday              <NA>
#> 7           2024-03-29          2024-03-29   allday              <NA>
#> 8           2024-03-12          2024-03-15   allday              <NA>
#> 9           2024-03-19          2024-03-21   allday              <NA>
#> 10 2024-03-20 14:00:00 2024-03-20 17:00:00     time              <NA>
#> 11 2024-03-24 12:00:00 2024-03-24 14:00:00     time   Some restaurant
#> 12          2024-03-27          2024-03-28   allday Conference center
#> 13          2024-03-03          2024-03-03   allday              <NA>
#>    backgroundColor   color borderColor
#> 1             <NA>    <NA>        <NA>
#> 2             <NA>    <NA>        <NA>
#> 3             <NA>    <NA>        <NA>
#> 4             <NA>    <NA>        <NA>
#> 5          #5E81AC   white     #5E81AC
#> 6          #5E81AC   white     #5E81AC
#> 7          #5E81AC   white     #5E81AC
#> 8             <NA>    <NA>        <NA>
#> 9             <NA>    <NA>        <NA>
#> 10            <NA>    <NA>        <NA>
#> 11            <NA>    <NA>        <NA>
#> 12            <NA>    <NA>        <NA>
#> 13         #FAFAFA #FF0000     #FF0000

#' # Weekly schedule
cal_demo_data("week")
#>   calendarId    title                        body               start
#> 1          3 Course 1 Learn something interesting  2024-03-25 8:00:00
#> 2          3 Course 2 Learn something interesting 2024-03-25 14:00:00
#> 3          3 Course 3 Learn something interesting 2024-03-27 08:00:00
#> 4          3 Course 4 Learn something interesting 2024-03-28 16:00:00
#> 5          2    Lunch                  Work lunch 2024-03-26 12:00:00
#> 6          2  Meeting                Work meeting 2024-03-26 16:00:00
#> 7          1    Sport          Make some exercise 2024-03-28 07:00:00
#> 8          1    Movie       Go watch a cool movie 2024-03-27 18:00:00
#> 9          1  Day off              Take some rest          2024-03-29
#>                   end category
#> 1 2024-03-25 12:00:00     time
#> 2 2024-03-25 18:00:00     time
#> 3 2024-03-27 11:00:00     time
#> 4 2024-03-28 19:00:00     time
#> 5 2024-03-26 14:00:00     time
#> 6 2024-03-26 18:30:00     time
#> 7 2024-03-28 09:00:00     time
#> 8 2024-03-27 21:00:00     time
#> 9          2024-03-29   allday