make01                package:distrEx                R Documentation

_C_e_n_t_e_r_i_n_g _a_n_d _S_t_a_n_d_a_r_d_i_z_a_t_i_o_n _o_f _U_n_i_v_a_r_i_a_t_e _D_i_s_t_r_i_b_u_t_i_o_n_s

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

     The function 'make01' produces a new centered and  standardized
     univariate distribution.

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

     make01(x)

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

       x: an object of class '"UnivariateDistribution"' 

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

     Thanks to the functionals provided in this package, the code is  a
     one-liner: '(x-E(x))/sd(x)'.

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

     Object of class '"UnivariateDistribution"' with expectation 0 and
     variance 1.

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

     Peter Ruckdeschel peter.ruckdeschel@uni-bayreuth.de

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

     'E', 'Var'

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

     X <- sin(exp(2*log(abs( Norm())))) ## something weird
     X01 <- make01(X)
     print(X01)
     plot(X01)
     sd(X01); E(X01)

