R/proust_char.R

Defines functions proust_characters

Documented in proust_characters

#' Characters from Proust Books
#' 
#' Returns a tidy data frame of Marcel Proust's characters.
#' 
#' @return A tibble 
#' 
#' @source \url{http://proust-personnages.fr/}
#' 
#' @examples 
#' 
#' #Creates the tibble 
#' proust <- proust_characters()
#'  
#'
#' @export
#' 
proust_characters <- function(){
  structure(proustr::proust_char, class = c("tbl_df", "tbl", "data.frame"))
}

Try the proustr package in your browser

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

proustr documentation built on May 2, 2019, 5:08 a.m.