Nothing
# self-adjoin `majors` data
data(majors)
major_changes <- self_adjoin(majors, key = semester,
by = "student", link = c("semester", "curriculum"))
major_changes$change <- major_changes$curriculum.x == major_changes$curriculum.y
head(major_changes)
# self-adjoin `vaccinations` data
data(vaccinations)
vaccination_steps <- self_adjoin(vaccinations, key = survey, by = "subject",
link = c("survey", "response"),
keep.x = c("freq"))
head(vaccination_steps)
vaccination_steps <- self_adjoin(vaccinations, key = survey, by = "subject",
link = c("survey", "response"),
keep.x = c("freq"),
keep.y = c("start_date", "end_date"))
head(vaccination_steps)
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.