“Zeile von Matrix r entfernen” Code-Antworten

Zeile von Matrix r entfernen

# Remove third row - by row number
MyMatrix <- MyMatrix[-3,]

# Remove third and fifth rows - by feeding the matrix a boolean vector
MyMatrix <- MyMatrix[c(TRUE,TRUE,FALSE,TRUE,FALSE,TRUE),]
YEGdad

Del Row Matrix r

> x <- matrix(1:9, nrow = 3, dimnames = list(c("X","Y","Z"), c("A","B","C")))
> x
A B C
X 1 4 7
Y 2 5 8
Z 3 6 9
Cheerful Cormorant

Ähnliche Antworten wie “Zeile von Matrix r entfernen”

Fragen ähnlich wie “Zeile von Matrix r entfernen”

Weitere verwandte Antworten zu “Zeile von Matrix r entfernen” auf R

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen