type2Exten                package:xps                R Documentation

_C_o_n_v_e_r_t _M_e_t_h_o_d _T_y_p_e _t_o _T_r_e_e _E_x_t_e_n_s_i_o_n

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

     Convert Method Type to Tree Extension.

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

     type2Exten(type, datatype)

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

    type: method type.

datatype: data type.

_D_e_t_a_i_l_s:

     For every 'datatype' different methods, i.e. algorithms exist
     which can be applied. Valid 'datatype's are preprocess and
     normation.

     For 'datatype' preprocess the following methods can be applied:

       'mean':           trimmed mean
       'median':         median
       'quantile':       quantile
       'tukeybiweight':  tukey biweight
       'medianpolish':   median polish

     For 'datatype' normation the following methods can be applied:

       'mean':      trimmed mean
       'median':    median
       'quantile':  quantile
       'lowess':    lowess
       'supsmu':    supsmu

     The tree extensions are described in 'validTreetype'.

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

     A 'character' with the correct tree extension.

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

     Christian Stratowa

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

     'getDatatype', 'validTreetype'

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

     type2Exten("quantile","preprocess")
     type2Exten("medianpolish","preprocess")
     type2Exten("supsmu","normation")

