ID EN
Data Frame & Matrix

row

R Base 3.6.2 🇮🇩 Bahasa Indonesia

Mengembalikan matriks bilangan bulat yang menunjukkan nomor barisnya dalam objek mirip matriks, atau faktor yang menunjukkan label baris.

Syntax

R
row(x, as.factor = FALSE)
.row(dim)

Arguments

Parameter Deskripsi
x a matrix-like object, that is one with a two-dimensional dim.
dim a matrix dimension, i.e., an integer valued numeric vector of length two (with non-negative entries).
as.factor a logical value indicating whether the value should be returned as a factor of row labels (created if necessary) rather than as numbers.

Return Value

Matriks bilangan bulat (atau faktor) yang berdimensi sama dengan x dan elemen ke-ijnya sama dengan i (atau label baris ke-i).

Contoh

Example
R
# NOT RUN {
x <- matrix(1:12, 3, 4)
# extract the diagonal of a matrix - more slowly than diag(x)
dx <- x[row(x) == col(x)]
dx

# create an identity 5-by-5 matrix more slowly than diag(n = 5):
x <- matrix(0, nrow = 5, ncol = 5)
x[row(x) == col(x)] <- 1
x

(i34 <- .row(3:4))
stopifnot(identical(i34, .row(c(3,4)))) # 'dim' maybe "double"
# }

See Also

col to get columns; slice.index for a general way to get slice indices in an array.