"[<-.ggobiDataset" {rggobi}R Documentation

Assignments for ggobi datasets

Description

Usage

"[<-.ggobiDataset"(x, i, j, value)

Arguments

x row indices
i column indices
j new values
value

Details

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, subsetting that copy, and then returning any changes.

@argument ggobi dataset @arguments row indices @arguments column indices @arguments new values @keyword manip @keyword internal

Author(s)

Hadley Wickham <h.wickham@gmail.com>

Examples

g <- ggobi(mtcars)
x <- g["mtcars"]
x[1:5, 1:5]
x[1:5, 1] <- 1:5
x[1:5, 1:5]

[Package rggobi version 2.1.3 Index]