txtboxplot: Text based boxplot

Description Usage Arguments Note Author(s) See Also Examples

View source: R/txtplot.R

Description

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

Usage

1
2
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

Note

Due to rounding to a relatively crude grid results can only be approximate. E.g. the equally spaced axis ticks may be non-equally spaced in the plot.

Author(s)

Bjoern Bornkamp

See Also

txtplot

Examples

1
2
3
4
5
  rand1 <- rnorm(100, 1, 2)
  rand2 <- rnorm(50, 2, 2)
  rand3 <- rnorm(50, 2, 5)
  txtboxplot(rand1)
  txtboxplot(rand1, rand2, rand3)

Example output

        -2            0            2             4            6 
 |-------+------------+------------+-------------+------------+|
                   +--------+-------+                           
    ---------------|        |       |----------------------     
                   +--------+-------+                           
  -10       -5          0         5        10         15        
 |-+---------+----------+---------+---------+----------+-------|
                       +--+-+                                   
1                 -----|  | |-------                            
                       +--+-+                                   
                         +-+--+                                 
2                --------| |  |------                           
                         +-+--+                                 
                      +------+-------+                          
3   ------------------|      |       |---------------------     
                      +------+-------+                          
Legend: 1=rand1, 2=rand2, 3=rand3

txtplot documentation built on April 5, 2020, 9:07 a.m.