"[.ggobiDataset"           package:rggobi           R Documentation

_S_u_b_s_e_t_t_t_i_n_g

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

     Subsetting for ggobi datasets

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

     "[.ggobiDataset"(x, i, j, drop=FALSE)

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

       x: arguments for generic data.frame subset function

       i: drop dimensions?

       j: 

    drop: 

_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, and
     then subsetting with R.

_V_a_l_u_e:

     desired subset from data.frame

_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]]
     x$cyl

