File: boxplot.units.Rd

package info (click to toggle)
r-cran-units 0.8-1%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,068 kB
  • sloc: xml: 2,437; cpp: 175; sh: 13; makefile: 2
file content (24 lines) | stat: -rw-r--r-- 653 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/plot.R
\name{boxplot.units}
\alias{boxplot.units}
\title{boxplot for unit objects}
\usage{
\method{boxplot}{units}(x, ..., horizontal = FALSE)
}
\arguments{
\item{x}{object of class units, for which we want to plot the boxplot}

\item{...}{parameters passed on to \link{boxplot.default}}

\item{horizontal}{logical indicating if the boxplots should be horizontal;
default FALSE means vertical boxes.}
}
\description{
boxplot for unit objects
}
\examples{
units_options(parse = FALSE) # otherwise we break on the funny symbol!
u = set_units(rnorm(100), degree_C)
boxplot(u)
}