heart               package:robustbase               R Documentation

_H_e_a_r_t _C_a_t_h_e_r_i_z_a_t_i_o_n _D_a_t_a

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

     This data set was analyzed by Weisberg (1980) and Chambers et al.
     (1983).  A catheter is passed into a major vein or artery at the
     femoral region and moved into the heart.  The proper length of the
     introduced catheter has to be guessed by the physician. The aim of
     the data set is to describe the relation between the catheter
     length and the patient's height (X1) and weight (X2).

     This data sets is used to demonstrate the effects caused by
     collinearity. The correlation between height and weight is so high
     that either variable almost completely determines the other.

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

     data(heart)

_F_o_r_m_a_t:

     A data frame with 12 observations on the following 3 variables.

     '_h_e_i_g_h_t' Patient's height in inches

     '_w_e_i_g_h_t' Patient's weights in pounds

     '_c_l_e_n_g_t_h' Y: Catheter Length (in centimeters)

_N_o_t_e:

     There are other 'heart' datasets in other R packages, notably
     'survival', hence considering using 'package = "robustbase"', see
     examples.

_S_o_u_r_c_e:

     Weisberg (1980)

     Chambers et al. (1983)

     P. J. Rousseeuw and A. M. Leroy (1987) _Robust Regression and
     Outlier Detection_; Wiley, p.103, table 13.

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

     data(heart, package="robustbase")
     heart.x <- data.matrix(heart[, 1:2]) # the X-variables
     plot(heart.x)
     covMcd(heart.x)
     summary( lm.heart <-     lm(clength ~ . , data = heart))
     summary(lts.heart <- ltsReg(clength ~ . , data = heart))

