summary.rlm package:MASS R Documentation _S_u_m_m_a_r_y _M_e_t_h_o_d _f_o_r _R_o_b_u_s_t _L_i_n_e_a_r _M_o_d_e_l_s _D_e_s_c_r_i_p_t_i_o_n: 'summary' method for objects of class '"rlm"' _U_s_a_g_e: ## S3 method for class 'rlm': summary(object, method = c("XtX", "XtWX"), correlation = FALSE, ...) _A_r_g_u_m_e_n_t_s: object: the fitted model. This is assumed to be the result of some fit that produces an object inheriting from the class 'rlm', in the sense that the components returned by the 'rlm' function will be available. method: Should the weighted (by the IWLS weights) or unweighted cross-products matrix be used? correlation: logical. Should correlations be computed (and printed)? ...: arguments passed to or from other methods. _D_e_t_a_i_l_s: This function is a method for the generic function 'summary()' for class '"rlm"'. It can be invoked by calling 'summary(x)' for an object 'x' of the appropriate class, or directly by calling 'summary.rlm(x)' regardless of the class of the object. _V_a_l_u_e: If printing takes place, only a null value is returned. Otherwise, a list is returned with the following components. Printing always takes place if this function is invoked automatically as a method for the 'summary' function. correlation: The computed correlation coefficient matrix for the coefficients in the model. cov.unscaled: The unscaled covariance matrix; i.e, a matrix such that multiplying it by an estimate of the error variance produces an estimated covariance matrix for the coefficients. sigma: The scale estimate. stddev: A scale estimate used for the standard errors. df: The number of degrees of freedom for the model and for residuals. coefficients: A matrix with three columns, containing the coefficients, their standard errors and the corresponding t statistic. terms: The terms object used in fitting this model. _R_e_f_e_r_e_n_c_e_s: Venables, W. N. and Ripley, B. D. (2002) _Modern Applied Statistics with S._ Fourth edition. Springer. _S_e_e _A_l_s_o: 'summary' _E_x_a_m_p_l_e_s: summary(rlm(calls ~ year, data = phones, maxit = 50)) ## Not run: Call: rlm(formula = calls ~ year, data = phones, maxit = 50) Residuals: Min 1Q Median 3Q Max -18.31 -5.95 -1.68 26.46 173.77 Coefficients: Value Std. Error t value (Intercept) -102.622 26.553 -3.86 year 2.041 0.429 4.76 Residual standard error: 9.03 on 22 degrees of freedom Correlation of Coefficients: [1] -0.994 ## End(Not run)