The goal of eventr is to …
You can install the released version of eventr from CRAN with:
install.packages("eventr")
# Or the development version from GitHub:
# install.packages("devtools")
::install_github("alvarofranq/eventr") devtools
This is a basic example which shows you how to solve a common problem:
library(eventr)
library(dplyr)
<- event(
birth_event id = 'first-id',
type = 'BIRTH',
time = '1936-11-09',
birth_date = '1936-11-09'
)
<- event(
death_event id = 'second-id',
type = 'DEATH',
time = '2019-05-22',
death_date = '2019-05-22'
)
<- function(obj, event){
set_birth_date $birth_date <- get_body_attr(event, "birth_date")
objreturn(obj)
}
<- function(obj, event){
set_death_date $death_date <- get_body_attr(event, "death_date")
objreturn(obj)
}
<- handler(type = 'BIRTH', FUN = set_birth_date)
birth_handler <- handler(type = 'DEATH', FUN = set_death_date)
death_handler
<- handlers_list(birth_handler, death_handler)
handlers
<- dispatcher(handlers)
the_dispatcher
<- get_dispatch(the_dispatcher)
dispatch
<- event_list(birth_event, death_event)
events
<- dispatch(events = events, accumulate = FALSE)
the_obj
the_obj
<- dispatch(events = events, accumulate = TRUE)
the_obj
the_obj
# transform the_obj to data.frame
%>%
the_obj ::map(as.data.frame) %>%
purrr
bind_rows