insertCol: Insert Column into a Matrix

View source: R/utils.R

insertColR Documentation

Insert Column into a Matrix

Description

Insert a new column into a matrix.

Usage

insertCol( m, c, v = NA, cName = "" )

Arguments

m

matrix.

c

column number where the new column should be inserted.

v

optional values of the new column.

cName

optional character string: the name of the new column.

Value

a matrix with one more column than the provided matrix m.

Author(s)

Arne Henningsen

See Also

insertRow.

Examples

   m <- matrix( 1:4, 2 )
   insertCol( m, 2, 5:6 )

miscTools documentation built on May 3, 2023, 5:11 p.m.