se | R Documentation |
Outputs vector of standard errors of an estimated parameter vector.
se(object)
object |
Object for which S3 method |
Vector
survey::SE
#############################################################################
# EXAMPLE 1: Toy example with lm function
#############################################################################
set.seed(906)
N <- 100
x <- seq(0,1,length=N)
y <- .6*x + stats::rnorm(N, sd=1)
mod <- stats::lm( y ~ x )
coef(mod)
vcov(mod)
se(mod)
summary(mod)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.