supp                  package:delt                  R Documentation

_R_e_t_u_r_n_s _t_h_e _b_o_u_n_d_i_n_g _b_o_x _o_f _o_b_s_e_r_v_a_t_i_o_n_s

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

     Returns the smallest rectangle containing the observations. The
     sides of the rectangle are parallel to the coordinate axis.

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

     supp(dendat, epsi=0, blown=FALSE)

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

  dendat: n*d data matrix

    epsi: positive number: option to return the smallest rectangle such
          that the epsi-shrinkage of the rectangle containes the
          observations

   blown: internal

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

     2*d vector: (2*i-1)-element, i=1,...,d, is the start of the i:th
     interval and (2*i)-element is the end of the i:th interval

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

     Jussi Klemel

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

     set.seed(1)
     dendat<-matrix(rnorm(20),10)
     supp(dendat)

