Nothing
#' to check the type of fit
#' @description extracts the type of fit that was applied in flux_fitting
#' or checks that the fit_type provided by the user is compatible with Fluxible
#' @param df any dataframe
#' @param fit_type type of fit that was applied in flux_fitting. Needs to be
#' filled only if the df was produced outside of the Fluxible workflow.
#' @param fit_type_list list of fit types in use with Fluxible.
flux_fit_type <- function(df,
fit_type = c(),
fit_type_list = c(
"exp_hm",
"exp_tz",
"exp_zhao18",
"exponential",
"linear",
"quadratic"
)) {
if (is.null(fit_type)) {
fit_type <- attributes(df)$fit_type
} else {
fit_type <- match.arg(fit_type, fit_type_list)
}
if (is.null(fit_type)) {
stop("argument fit_type is missing")
}
if (fit_type == "exponential") {
fit_type <- "exp_zhao18" # for backwards compatibility
}
fit_type
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.