Learn R Programming

txtplot (version 1.0-4)

txtboxplot: Text based boxplot

Description

Produces rudimentary ascii boxplots. The boxplot statistics are produced using the boxplot.stats function.

Usage

txtboxplot(..., range = 1.5, legend = NULL, xlab = NULL,
           width = round(options()$width * 0.8))

Arguments

Numeric vectors for which a boxplot should be produced

range

This determines how far the plot whiskers extend out from the box. See boxplot.stats and the coef function for details.

legend

Logical determining whether a legend should be drawn. If legend is NULL there will be a legend drawn in case there is more than one boxplot.

xlab

label for x-axis of boxplot, if NULL no x-label will be plotted

width

Width of the plot

See Also

txtplot

Examples

Run this code
# NOT RUN {
  rand1 <- rnorm(100, 1, 2)
  rand2 <- rnorm(50, 2, 2)
  rand3 <- rnorm(50, 2, 5)
  txtboxplot(rand1)
  txtboxplot(rand1, rand2, rand3)
# }

Run the code above in your browser using DataLab