1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/graphics.R
\name{graphics-utils}
\alias{graphics-utils}
\alias{mfrow}
\title{Utility Functions for Graphics}
\usage{
mfrow(n)
}
\arguments{
\item{n}{number of plots to be arranged.}
}
\value{
a 2-long numeric vector that can be passed to \verb{par(mfrow = <value>)}.
}
\description{
Utility Functions for Graphics
\code{mfrow} returns a 2-long numeric vector suitable to use in \code{\link{par}(mfrow=x)},
that will arrange \code{n} panels in a single plot.
}
\examples{
mfrow(1)
mfrow(2)
mfrow(3)
mfrow(4)
mfrow(10)
}
|