plot.factor             package:graphics             R Documentation

_P_l_o_t_t_i_n_g _F_a_c_t_o_r _V_a_r_i_a_b_l_e_s

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

     This functions implements a scatterplot method for 'factor'
     arguments of the _generic_ 'plot' function. Actually, 'boxplot' is
     used when 'y' is numeric and a 'spineplot' when 'y' is a factor.
     For  a single factor 'x' (i.e., with 'y' missing) a simple
     'barplot' is produced.

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

     ## S3 method for class 'factor':
     plot(x, y, legend.text = NULL, ...)

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

    x, y: numeric or factor. 'y' may be missing.

legend.text: character vector for annotation of y axis, defaults to
          'levels(y)'. Can be used instead of 'yaxlabels' (for backward
          compatibility).

     ...: Further arguments to 'plot', see also 'par'.

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

     'plot.default', 'plot.formula', 'barplot', 'boxplot', 'spineplot'.

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

     require(grDevices)
     plot(PlantGrowth)                                # -> plot.data.frame
     plot(weight ~ group, data = PlantGrowth)         # numeric vector ~ factor
     plot(cut(weight, 2) ~ group, data = PlantGrowth) # factor ~ factor
     ## passing "..." to spineplot() eventually:
     plot(cut(weight, 3) ~ group, data = PlantGrowth,
          col = hcl(c(0, 120, 240), 50, 70))

     plot(PlantGrowth$group, axes=FALSE, main="no axes")# extremely silly

