fn builtin_cbind(
args: &[RValue],
_: &[(String, RValue)],
) -> Result<RValue, RError>Expand description
Bind vectors, matrices, or data frames by columns.
Combines arguments column-wise. If any argument is a data frame, produces a data frame result. Otherwise produces a matrix.
@param … vectors, matrices, or data frames to bind @return matrix or data frame