| Line 9... |
Line 9... |
| 9 |
\description{
|
9 |
\description{
|
| 10 |
Print a data frame.
|
10 |
Print a data frame.
|
| 11 |
}
|
11 |
}
|
| 12 |
\usage{
|
12 |
\usage{
|
| 13 |
\method{print}{data.frame}(x, \dots, digits = NULL,
|
13 |
\method{print}{data.frame}(x, \dots, digits = NULL,
|
| 14 |
quote = FALSE, right = TRUE, max = NULL, row.names = TRUE)
|
14 |
quote = FALSE, right = TRUE, row.names = TRUE, max = NULL)
|
| 15 |
}
|
15 |
}
|
| 16 |
\arguments{
|
16 |
\arguments{
|
| 17 |
\item{x}{object of class \code{data.frame}.}
|
17 |
\item{x}{object of class \code{data.frame}.}
|
| 18 |
\item{\dots}{optional arguments to \code{print} or \code{plot} methods.}
|
18 |
\item{\dots}{optional arguments to \code{print} or \code{plot} methods.}
|
| 19 |
\item{digits}{the minimum number of significant digits to be used: see
|
19 |
\item{digits}{the minimum number of significant digits to be used: see
|
| 20 |
\code{\link{print.default}}.}
|
20 |
\code{\link{print.default}}.}
|
| 21 |
\item{quote}{logical, indicating whether or not entries should be
|
21 |
\item{quote}{logical, indicating whether or not entries should be
|
| 22 |
printed with surrounding quotes.}
|
22 |
printed with surrounding quotes.}
|
| 23 |
\item{right}{logical, indicating whether or not strings should be
|
23 |
\item{right}{logical, indicating whether or not strings should be
|
| 24 |
right-aligned. The default is right-alignment.}
|
24 |
right-aligned. The default is right-alignment.}
|
| - |
|
25 |
\item{row.names}{logical (or character vector), indicating whether (or
|
| - |
|
26 |
what) row names should be printed.}
|
| 25 |
\item{max}{numeric or \code{NULL}, specifying the maximal number of
|
27 |
\item{max}{numeric or \code{NULL}, specifying the maximal number of
|
| 26 |
entries to be printed. By default, when \code{NULL},
|
28 |
entries to be printed. By default, when \code{NULL},
|
| 27 |
\code{\link{getOption}("max.print")} used.}
|
29 |
\code{\link{getOption}("max.print")} used.}
|
| 28 |
\item{row.names}{logical (or character vector), indicating whether (or
|
- |
|
| 29 |
what) row names should be printed.}
|
- |
|
| 30 |
}
|
30 |
}
|
| 31 |
\details{
|
31 |
\details{
|
| 32 |
This calls \code{\link{format}} which formats the data frame
|
32 |
This calls \code{\link{format}} which formats the data frame
|
| 33 |
column-by-column, then converts to a character matrix and dispatches
|
33 |
column-by-column, then converts to a character matrix and dispatches
|
| 34 |
to the \code{print} method for matrices.
|
34 |
to the \code{print} method for matrices.
|