insertRowAndKeepAttr: Insert a row into a matrix

View source: R/insertRowAndKeepAttr.R

insertRowAndKeepAttrR Documentation

Insert a row into a matrix

Description

Inserts a row and keeps the attributes copyAllNewAttributes

Usage

insertRowAndKeepAttr(m, r, v = NA, rName = "")

Arguments

m

matrix

r

row number where the new row should be inserted

v

optional values for the new row

rName

optional character string: the name of the new row.

Value

matrix Returns a matrix with one more row than the provided matrix m

Author(s)

Max Gordon, Arne Henningsen

Examples

test <- matrix(1:4, ncol = 2)
attr(test, "wow") <- 1000
test <- insertRowAndKeepAttr(test, 2)
print(attr(test, "wow"))

Gmisc documentation built on Aug. 26, 2023, 1:07 a.m.