View source: R/autoplot.pop_data.R
autoplot.pop_data | R Documentation |
autoplot()
method for pop_data
objects
## S3 method for class 'pop_data'
autoplot(object, log = FALSE, type = "density", strata = NULL, ...)
object |
A |
log |
whether to show antibody responses on logarithmic scale |
type |
an option to choose type of chart:
the current options are |
strata |
the name of a variable in |
... |
unused |
a ggplot2::ggplot object
library(dplyr)
library(ggplot2)
library(magrittr)
xs_data <-
serocalculator_example("example_pop_data.csv") %>%
read.csv() %>%
as_pop_data()
xs_data %>% autoplot(strata = "catchment", type = "density")
xs_data %>% autoplot(strata = "catchment", type = "age-scatter")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.