deflection              package:UsingR              R Documentation

_D_e_f_l_e_c_t_i_o_n _u_n_d_e_r _l_o_a_d

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

     The data collected in a calibration experiment consisting of a
     known load, applied to the load cell, and the corresponding
     deflection of the cell from its nominal position.

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

     data(deflection)

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

     A data frame with 40 observations on the following 2 variables.

     _D_e_f_l_e_c_t_i_o_n a numeric vector

     _L_o_a_d a numeric vector

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

     From an example in _Engineering Statistics Handbook_ from <URL:
     http://www.itl.nist.gov/div898/handbook/>

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

     data(deflection)
     res = lm(Deflection ~ Load, data = deflection)
     plot(Deflection ~ Load, data = deflection)
     abline(res)                     # looks good?
     plot(res)

