R/box_plot.R

Defines functions box_plot

box_plot <- function(x,...)
{
  boxplot(x,..., col = "orange",
          border = "brown",
          horizontal = TRUE,
          notch = FALSE)
}

#Example:
#mtcars <- as.matrix(mtcars)
#box_plot(mtcars)
SanthoshKumarKarthikeyan/skkr documentation built on May 26, 2019, 10:34 a.m.