ggobi                 package:Rggobi                 R Documentation

_C_r_e_a_t_e_s _a _n_e_w _g_g_o_b_i _i_n_s_t_a_n_c_e

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

     Create a new instance of a GGobi control panel with or without new
     data. This new GGobi will operate indepdently of the others in the
     R session and will not share linked plots.

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

       ggobi(data = NULL, args=character(0), mode=character(0), name = deparse(sys.call()[[2]]), ...)

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

    data: the name of a file containing the data to be loaded or a data
          frame or matrix containing the values

    args: a character vector of arguments that are given to the ggobi
          engine as if they were specified as command line arguments to
          the stand-alone ggobi. This includes flags such as
          \texttt{-xml}, \texttt{-a}, etc. to specify the mode of the
          data being read from a file.

    mode: the name of the data format GGobi should expect to read the
          data from, if reading from a file.

    name: the name to use in GGobi for the dataset, if one is specified

     ...: passed to 'setData.ggobi'

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

     This creates a new ggobi object which manages one or more related
     datasets and a linked collection of views of the values in those
     datasets.

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

     An object that can be used in subsequent calls to identify this
     particular ggobi instance. This is a list with two elements: 

      id: an integer identifying which ggobi instance this was within
          the R session.

     ref: the C-level address of the internal 'ggobid' structure. Do no
          use!

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

     Duncan Temple Lang

_R_e_f_e_r_e_n_c_e_s:

     <URL: http://www.ggobi.org>

_S_e_e _A_l_s_o:

     'getDefaultGGobi', 'getNumGGobis'

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

      ggobi(system.file("data", "flea.dat", package="Rggobi"), c("-noinit", "-ascii"))
      ggobi(system.file("data", "flea.xml", package="Rggobi"), c("-noinit", "-xml"))

      ggobi(system.file("data", "flea.xml", package="Rggobi"), args= "-noinit")

      data(mtcars)
      ggobi(mtcars)

