se: Standard Errors of Estimated Parameters

View source: R/se.R

seR Documentation

Standard Errors of Estimated Parameters

Description

Outputs vector of standard errors of an estimated parameter vector.

Usage

se(object)

Arguments

object

Object for which S3 method vcov can be applied

Value

Vector

See Also

survey::SE

Examples

#############################################################################
# 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)

BIFIEsurvey documentation built on May 29, 2024, 2:52 a.m.