#' Finds the mean of a data frame
#'
#' @param dataframe data frame
#'
#' @return Mean of the designated data frame
#' @examples
#' \dontrun{OutlierDetect(exampledata)}
#' @export
ArrayMean <- function(dataframe) {
columnmeans=colMeans(dataframe)
totalmean=mean(dataframe)
dataframe
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.