DNase                  package:nls                  R Documentation

_E_l_i_s_a _a_s_s_a_y _o_f _D_N_a_s_e

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

     The `DNase' data frame has 176 rows and 3 columns of data obtained
     during development of an ELISA assay for the recombinant protein
     DNase in rat serum.

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

     This data frame contains the following columns:

     _R_u_n an ordered factor with levels `10' < ...{} < `3'
            indicating the assay run.

     _c_o_n_c a numeric vector giving the known concentration of
            the protein. 

     _d_e_n_s_i_t_y a numeric vector giving the measured optical
            density (dimensionless) in the assay.  Duplicate optical
            density measurements were obtained. 

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

     Davidian, M. and Giltinan, D. M. (1995) Nonlinear Models for
     Repeated Measurement Data, Chapman & Hall (section 5.2.4, p. 134)

     Pinheiro, J. C. and Bates, D. M. (2000) Mixed-effects Models in S
     and S-PLUS, Springer.

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

     library(nls)
     data(DNase)
     coplot(density ~ conc | Run, data = DNase,
         show = FALSE, type = "b")
     coplot(density ~ log(conc) | Run, data = DNase,
         show = FALSE, type = "b")
     ## fit a representative run
     fm1 <- nls(density ~ SSlogis( log(conc), Asym, xmid, scal ),
         data = DNase, subset = Run == 1)
     ## compare with a four-parameter logistic
     fm2 <- nls(density ~ SSfpl( log(conc), A, B, xmid, scal ),
         data = DNase, subset = Run == 1)
     summary(fm2)
     anova(fm1, fm2)

