"[.GGobiData" {rggobi} | R Documentation |
Subsetting for ggobi datasets
"[.GGobiData"(x, i, j, drop=FALSE)
x |
arguments for generic data.frame subset function |
i |
drop dimensions? |
j |
|
drop |
This functions allow one to treat a ggobi dataset as if it were a local data.frame. One can extract and assign elements within the dataset.
This method works by retrieving the entire dataset into R, and then subsetting with R.
desired subset from data.frame
Hadley Wickham <h.wickham@gmail.com>
g <- ggobi(mtcars) x <- g$mtcars x[1:5, 1:5] x[[1]] x$cyl