Skip to contents

Chainable functional alias of x[i, ] <- value.

Usage

setRow(x, i, value)

Arguments

x

An object that supports the "[<-" method, such as a matrix or data frame.

i

Row index

value

The value to assign to the specified index/indices.

Value

The modified object.

See also

Examples

mat <- matrix(1:9, nrow = 3)
setRow(mat, i = 1, value = 10)  # Set entire first row to 10
#>      [,1] [,2] [,3]
#> [1,]   10   10   10
#> [2,]    2    5    8
#> [3,]    3    6    9