"[<-.ggobiDataset"          package:rggobi          R Documentation

_A_s_s_i_g_n_m_e_n_t_s _f_o_r _g_g_o_b_i _d_a_t_a_s_e_t_s

_D_e_s_c_r_i_p_t_i_o_n:

_U_s_a_g_e:

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

_A_r_g_u_m_e_n_t_s:

       x: row indices

       i: column indices

       j: new values

   value: 

_D_e_t_a_i_l_s:

     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

_A_u_t_h_o_r(_s):

     Hadley Wickham <h.wickham@gmail.com>

_E_x_a_m_p_l_e_s:

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

