| Line 1... |
Line 1... |
| 1 |
% File src/library/base/man/cbind.Rd
|
1 |
% File src/library/base/man/cbind.Rd
|
| 2 |
% Part of the R package, http://www.R-project.org
|
2 |
% Part of the R package, http://www.R-project.org
|
| 3 |
% Copyright 1995-2008 R Core Team
|
3 |
% Copyright 1995-2013 R Core Team
|
| 4 |
% Distributed under GPL 2 or later
|
4 |
% Distributed under GPL 2 or later
|
| 5 |
|
5 |
|
| 6 |
\name{cbind}
|
6 |
\name{cbind}
|
| 7 |
\alias{cbind}%%--do C-internal method dispatching !!
|
7 |
\alias{cbind}%%--do C-internal method dispatching !!
|
| 8 |
\alias{rbind}
|
8 |
\alias{rbind}
|
| Line 89... |
Line 89... |
| 89 |
For the default method, a matrix combining the \code{\dots} arguments
|
89 |
For the default method, a matrix combining the \code{\dots} arguments
|
| 90 |
column-wise or row-wise. (Exception: if there are no inputs or all
|
90 |
column-wise or row-wise. (Exception: if there are no inputs or all
|
| 91 |
the inputs are \code{NULL}, the value is \code{NULL}.)
|
91 |
the inputs are \code{NULL}, the value is \code{NULL}.)
|
| 92 |
|
92 |
|
| 93 |
The type of a matrix result determined from the highest type of any of
|
93 |
The type of a matrix result determined from the highest type of any of
|
| 94 |
the inputs in the hierarchy raw < logical < integer < real < complex <
|
94 |
the inputs in the hierarchy raw < logical < integer < double < complex <
|
| 95 |
character < list .
|
95 |
character < list .
|
| 96 |
|
96 |
|
| 97 |
For \code{cbind} (\code{rbind}) the column (row) names are taken from
|
97 |
For \code{cbind} (\code{rbind}) the column (row) names are taken from
|
| 98 |
the \code{colnames} (\code{rownames}) of the arguments if these are
|
98 |
the \code{colnames} (\code{rownames}) of the arguments if these are
|
| 99 |
matrix-like. Otherwise from the names of the arguments or where those
|
99 |
matrix-like. Otherwise from the names of the arguments or where those
|