#' Linear model for concentration evaluation
#'
#' This must be performed in advanvce of usage of the function conc_eval to produce a linear model suiteable
#' for concentration evaluation.
#'
#' @param abs list
#' @param conc list
#'
#' @return summary of the regression
#' @export
#'
LinMod <- function(abs, conc) {
mod <- stats::lm(
conc ~ abs
) %>%
base::summary()
return(mod)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.