calendar (version 0.0.1)

ical: Create object of class ical

Description

Create object of class ical

Usage

ical(x, ic_attributes = NULL)

Arguments

x

Lines read-in in from an iCal file

ic_attributes

Calendar attributes, e.g. as provided by ic_attributes_vec().

Examples

Run this code
# NOT RUN {
# ical from .ics characters:
class(ical_example)
ic <- ical(ical_example)
attributes(ic)
class(ic)
# ical from data frame:
ic_df <- data.frame(ic)
ic2 <- ical(ic_df)
class(ic2)
attributes(ic2)
# }

Run the code above in your browser using DataCamp Workspace