dayOfYear             package:fCalendar             R Documentation

_D_a_y _o_f _t_h_e _Y_e_a_r

_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:

     dayOfYear(x)

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

       x: an object of class 'timeDate'. 

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

     returns the day count as integer value starting January, 1st.

_N_o_t_e:

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

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

     'dayOfWeek'

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

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

