R/ical_parse_df.R

#' ical_parse_df
#'
#' Parses iCalendar format from character vector or file and returns it
#' as data.frame.
#'
#' @rdname ical_parse
#'
#' @export
#'
ical_parse_df <- function(file = NULL, text = NULL){
  as.data.frame(
    ical_parse(file = file, text = text)
  )
}

Try the ical package in your browser

Any scripts or data that you put into this service are public.

ical documentation built on May 1, 2019, 6:33 p.m.