scatterplot              package:iSPlot              R Documentation

_C_r_e_a_t_e _a _s_c_a_t_t_e_r_p_l_o_t _o_n _a _g_t_k _w_i_n_d_o_w

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

     scatterplot plots a data set on to a gtk device, using the
     information  from the parameter viewItem, which is an object of
     class, sPlotView.

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

     scatterplot(viewItem)

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

viewItem: an object of class, sPlotView, that will be used for plotting
          information 

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

     scatterplot returns the parameter, viewItem, that has been updated
     with new plotting information.

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

     Elizabeth Whalen

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

     'createSPlotView',  'setParamList', 'sPlotView-class'

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

       if (interactive())
       {
         createControlWindow()
         # should load data through Open Data or Open File under the File menu
         data(USArrests)
         loadDFData(USArrests,"USArrests")
         # plotting the data should occur through Plot Data under 
         # the Display menu
         # here you can see the extra parameters needed for the plot view
         createView(type = "plotView", dataName = "USArrests", 
                    plotType = "sPlotView", dfRows = 1:nrow(USArrests), 
                    dfColumns = 1:2) 
         # createView will call createSPlotView, which will call scatterplot
       }

