View source: R/graph.decay.curves.R
plot_curve_params_one_ab | R Documentation |
Graph an antibody decay curve model
plot_curve_params_one_ab(
object,
verbose = FALSE,
alpha = 0.4,
n_curves = 100,
n_points = 1000,
log_x = FALSE,
log_y = TRUE,
rows_to_graph = seq_len(min(n_curves, nrow(object))),
xlim = c(10^-1, 10^3.1),
...
)
object |
a |
verbose |
verbose output |
alpha |
(passed to
|
n_curves |
how many curves to plot (see details). |
n_points |
Number of points to interpolate along the x axis
(passed to |
log_x |
should the x-axis be on a logarithmic scale ( |
log_y |
should the Y-axis be on a logarithmic scale
(default, |
rows_to_graph |
which rows of |
xlim |
range of x values to graph |
... |
Arguments passed on to
|
n_curves
and rows_to_graph
In most cases, curve_params
will contain too many rows of MCMC
samples for all of these samples to be plotted at once.
Setting the n_curves
argument to a value smaller than the
number of rows in curve_params
will cause this function to select
the first n_curves
rows to graph.
Setting n_curves
larger than the number of rows in ' will
result all curves being plotted.
If the user directly specifies the rows_to_graph
argument,
then n_curves
has no effect.
a ggplot2::ggplot()
object
library(dplyr) # loads the `%>%` operator and `dplyr::filter()`
curve <-
typhoid_curves_nostrat_100 %>%
filter(antigen_iso == ("HlyE_IgG")) %>%
serocalculator:::plot_curve_params_one_ab()
curve
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.