setParamList             package:iSPlot             R Documentation

_S_e_t _t_h_e _p_a_r_a_m_e_t_e_r _l_i_s_t _f_o_r _m_a_k_i_n_g _a _s_c_a_t_t_e_r_p_l_o_t

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

     setParamList sets the parameter list for making a scatterplot.  
     setParamList is called by scatterplot.  The parameters that are 
     currently set are color, and pch.  Note that points that are
     hidden  will be made the same color as the background.

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

     setParamList(dataF, dfRows, plotObject)

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

   dataF: the data set 

  dfRows: the data set rows 

plotObject: the plot object, will be of type plotView 

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

     col: the colors of all the points

     pch: the pch values of all the points

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

     Elizabeth Whalen

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

     'createView', 'scatterplot'

_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
         # createView will call setParamList
         createView(type = "plotView", dataName = "USArrests", 
                    plotType = "sPlotView", dfRows = 1:nrow(USArrests), 
                    dfColumns = 1:2)  
       }

