Plot Data with Fitted Models
bio_plot(
data,
...,
facet = TRUE,
line_col = "black",
line_type = "solid",
line_size = 0.8,
line_alpha = 1,
point_shape = 21,
point_col = "black",
point_alpha = 1,
point_size = 1
)
Tibble with nested columns of data
, drmod
, line
, coefs
made through one of the bio_binding()
or bio_enzyme_*()
functions.
Additional ggplot2::aes()
parameters to be applied to the plot.
Logical, whether to apply ggplot2::facet_wrap()
based on the
currently used facetting variables.
ggplot2::ggplot()
object.
library(biochemr)
Puromycin %>%
bio_enzyme_rate(conc, rate, group = state) %>%
bio_plot()