coefTable {micEcon} | R Documentation |
Generate Table for Coefficients, Std. Errors, t-values and P-values.
coefTable( coef, stdErr, df )
coef |
vector that contains the coefficients. |
stdErr |
vector that contains the standard errors of the coefficients. |
df |
degrees of freedom of the t-test used to calculate P-values. |
a matrix with 4 columns: coefficients, standard errors, t-values and P-values.
Arne Henningsen ahenningsen@agric-econ.uni-kiel.de
coefTable( rnorm( 10 ), 0.5 * abs( rnorm( 10 ) ), 20 )