dose.p package:MASS R Documentation _P_r_e_d_i_c_t _D_o_s_e_s _f_o_r _B_i_n_o_m_i_a_l _A_s_s_a_y _m_o_d_e_l _D_e_s_c_r_i_p_t_i_o_n: Calibrate binomial assays, generalizing the calculation of LD50. _U_s_a_g_e: dose.p(obj, cf = 1:2, p = 0.5) _A_r_g_u_m_e_n_t_s: obj: A fitted model object of class inheriting from '"glm"'. cf: The terms in the coefficient vector giving the intercept and coefficient of (log-)dose p: Probabilities at which to predict the dose needed. _V_a_l_u_e: An object of class '"glm.dose"' giving the prediction (attribute '"p"' and standard error (attribute '"SE"') at each response probability. _R_e_f_e_r_e_n_c_e_s: Venables, W. N. and Ripley, B. D. (2002) _Modern Applied Statistics with S._ Springer. _E_x_a_m_p_l_e_s: ldose <- rep(0:5, 2) numdead <- c(1, 4, 9, 13, 18, 20, 0, 2, 6, 10, 12, 16) sex <- factor(rep(c("M", "F"), c(6, 6))) SF <- cbind(numdead, numalive = 20 - numdead) budworm.lg0 <- glm(SF ~ sex + ldose - 1, family = binomial) dose.p(budworm.lg0, cf = c(1,3), p = 1:3/4) dose.p(update(budworm.lg0, family = binomial(link=probit)), cf = c(1,3), p = 1:3/4)