hsv_palette              package:e1071              R Documentation

_S_e_q_u_e_n_t_i_a_l _c_o_l_o_r _p_a_l_e_t_t_e _b_a_s_e_d _o_n _H_S_V _c_o_l_o_r_s

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

     Computes a sequential color palette based on HSV colors by varying
     the saturation, given hue and value.

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

     hsv_palette(h = 2/3, from = 0.7, to = 0.2, v = 1)

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

       h: hue

    from: lower bound for saturation

      to: upper bound for saturation

       v: value

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

     A function with one argument: the size of the palette, i.e., the
     number of colors.

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

     David Meyer David.Meyer@R-project.org

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

     'hsv'

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

     pie(rep(1, 10), col = hsv_palette()(10))
     pie(rep(1, 10), col = hsv_palette(h = 0)(10))

