Description Usage Arguments Details Author(s) Examples
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.
1 2  | ## S3 replacement method for class 'GGobiData'
x[i, j] <- value
 | 
x | 
 ggobi dataset  | 
i | 
 row indices  | 
j | 
 column indices  | 
value | 
 new values  | 
This method works by retrieving the entire dataset into R, subsetting that copy, and then returning any changes.
Hadley Wickham <h.wickham@gmail.com>
1 2 3 4 5 6  | if (interactive()) {
g <- ggobi(mtcars)
x <- g["mtcars"]
x[1:5, 1:5]
x[1:5, 1] <- 1:5
x[1:5, 1:5]}
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.