powered by
Operators acting on SeqDataFrames objects to extract or replace parts.
SeqDataFrames
# S4 method for SeqDataFrames [(x, i, j, k, drop = FALSE)# S4 method for SeqDataFrames [(x, i, j, k) <- value
# S4 method for SeqDataFrames [(x, i, j, k) <- value
again an object of class SeqDataFrames with the prescribed indices / values
object of class SeqDataFrames from which to extract element(s) or in which to replace element(s).
observation index; may be missing
observation dimension index; may be missing
run index; may be missing
as in the general indexing functions
modification to be assigned to
signature(x = "SeqDataFrames"): access method for indices for objects of class SeqDataFrames
signature(x = "SeqDataFrames")
signature(x = "SeqDataFrames"): replacement method for indices for objects of class SeqDataFrames
"["
s0 <- matrix(1:6,3,2) d0 <- data.frame(s0) d1 <- data.frame(s0 + 3) SF <- SeqDataFrames(d0, d1) SF[1,2,1]
Run the code above in your browser using DataLab