Nothing
#' @export
# use generics to export tidy
generics::tidy
#' @export
# use generics to export glance
generics::glance
#' @export
# use generics to export augment
generics::augment
# logit function
logit <- function(x) {
if (x < 0 | x > 1) {
stop("logit argument must be between zero and one", call. = FALSE)
}
log(x / (1 - x))
}
# expit function
expit <- function(x) {
1 / (1 + exp(-x))
}
# CRAN release questions
release_questions <- function() {
c(
"Have you turned off local tests or implemented skip_on_cran()?",
"Have you changed version numbers in DESCRIPTION, CITATION, and README?",
"Have you run pkgdown::build_site() and committed?"
)
}
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.