View source: R/autoplot.curve_params.R
| autoplot.curve_params | R Documentation | 
graph antibody decay curves by antigen isotype
## S3 method for class 'curve_params'
autoplot(
  object,
  antigen_isos = unique(object$antigen_iso),
  ncol = min(3, length(antigen_isos)),
  ...
)
object | 
 a   | 
antigen_isos | 
 antigen isotypes to analyze (can subset   | 
ncol | 
 how many columns of subfigures to use in panel plot  | 
... | 
 Arguments passed on to  
  | 
rows_to_graphNote that if you directly specify rows_to_graph when calling this function,
the row numbers are enumerated separately for each antigen isotype;
in other words, for the purposes of this argument,
row numbers start over at 1 for each antigen isotype. There is currently
no way to specify different row numbers for different antigen isotypes;
if you want to do that, you could call plot_curve_params_one_ab()
directly for each antigen isotype and combine the resulting panels yourself.
Or you could subset curve_params manually, before passing it to this
function, and set the n_curves argument to Inf.
a ggplot2::ggplot() object
library(dplyr)
library(ggplot2)
library(magrittr)
curve <-
  serocalculator_example("example_curve_params.csv") %>%
  read.csv() %>%
  as_curve_params() %>%
  filter(antigen_iso %in% c("HlyE_IgA", "HlyE_IgG")) %>%
  autoplot()
curve
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.