R/histeria.R

Defines functions histeria

Documented in histeria

#' Make a histogram of x
#'
#' This function generates a histogram of x.
#'
#' @param x a numeric vector.
#'
#' @return
#' Plots a histogram of x. 
#'
#' @author
#' Einar Petur Jonsson
#'
#' @seealso
#' \code{\link{hist}}
#'
#' @examples
#' histeria(mtcars$mpg)
#'
#' histeria(mtcars$qsec)
#'
#' @importFrom graphics hist
#'
#' @export



histeria<-function(x)
{
  out<-hist(x) 
}
    
arnima-github/biometry2 documentation built on May 26, 2019, 6:44 p.m.