Hist                  package:Rcmdr                  R Documentation

_P_l_o_t _a _H_i_s_t_o_g_r_a_m

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

     This function is a wrapper for the 'hist' function in the 'base'
     package, permitting percentage scaling of the vertical axis in
     addition to frequency and density scaling.

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

     Hist(x, scale = c("frequency", "percent", "density"), ...)

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

       x: a vector of values for which a histogram is to be plotted.

   scale: the scaling of the vertical axis: '"frequency"' (the
          default), '"percent"', or '"density"'.

     ...: arguments to be passed to 'hist'.

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

     This function returns 'NULL', and is called for its side effect -
     plotting a histogram.

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

     John Fox jfox@mcmaster.ca

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

     'hist'

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

         data(Prestige)
         Hist(Prestige$income, scale="percent")
         

