#' @export
quantile_regression = function(p, df, covariate_names, num_cores = 1) {
formula = as.formula(paste("range ~", paste(covariate_names, collapse = " + ")))
parallel::mclapply(X = p, mc.cores = num_cores, FUN = quantreg::rq, formula = formula, data = df)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.