Function for extracting components from a lm object
Extract the standard error and t-stat of the a-th parameter estimate of a lm object
contts(lm, a)
lm
: lm objecta
: The a-th parameter estimate of a linear model regressionse.coef: The standard error of the selected coefficient
t.stat: The t-stat of the selected coefficient
Javier Lopez-de-Lacalle in https://github.com/cran/uroot/blob/master/R/hegy.R
Ho Tsung-wu tsungwu@ntnu.edu.tw, modifed from Javier Lopez-de-Lacalle.
x=rnorm(100) y=1+0.2*x+rnorm(100) LMout=lm(y~x) contts(LMout,1) #$se.coef #[1] 0.1081023 #$t.stat #(Intercept) # 10.60401
Useful links