dayOfWeek             package:fCalendar             R Documentation

_D_a_y _o_f _t_h_e _W_e_e_k

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

     returns the day of the year from a 'timeDate' object.

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

     dayOfWeek(x)

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

       x: an object of class 'timeDate'. 

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

     returns a three letter character string with the names in English
     of the day of the week,

_N_o_t_e:

     With version 2.7 the function has been renamed from
     'getdayOfWeek'.

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

     'dayOfYear'

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

       
     ## timeCalendat -  
        tC = timeCalendar()
            
     ## The days of the Year:
        dayOfWeek(tC)
        
     ## Use Deprecated Function:
        getDayOfWeek <- dayOfWeek
        getDayOfWeek(tC)

