Nothing
#' Mean-center a variable
#'
#' This is a convenience function equal to scale(x, scale=FALSE)
#'
#' @param x Numeric vector
#' @examples
#' data(anchoring)
#' center(anchoring$everest_feet)
#' @export
center <- function(x) {
return(scale(x, scale = FALSE))
}
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.