sehatslopeshatprimedelta: Standard Errors of Standardized Estimates of Regression...

Description Usage Arguments Details Author(s) References See Also Examples

View source: R/sehat.R

Description

Standard Errors of Standardized Estimates of Regression Coefficients (Yuan and Chan (2011))

Usage

1

Arguments

X

n by k numeric matrix. The data matrix \mathbf{X} (also known as design matrix, model matrix or regressor matrix) is an n \times k matrix of n observations of k regressors, which includes a regressor whose value is 1 for each observation on the first column.

y

Numeric vector of length n or n by 1 matrix. The vector \mathbf{y} is an n \times 1 vector of observations on the regressand variable.

adjust

Logical. Use n - 3 adjustment for small samples.

Details

The pth estimated standard error is calculated using

\mathbf{\widehat{se}}_{\boldsymbol{\hat{β}}_{\text{p}}^{\prime}} = √{ \frac{\hat{σ}_{X_{p}}^{2} \hat{c}_{p} \hat{σ}_{\hat{\varepsilon}}^{2}}{n \hat{σ}_{y}^{2}} + \frac{\hat{β}_{p}^{2} ≤ft[ \hat{σ}_{X_{p}}^{2} ≤ft( \boldsymbol{\hat{β}}^{T} \boldsymbol{\hat{Σ}}_{X} \boldsymbol{\hat{β}} \right) - \hat{σ}_{X_{p}}^{2} \hat{σ}_{\hat{\varepsilon}}^{2} - \hat{σ}_{y, X_{p}}^{2} \right]}{n \hat{σ}_{y}^{4}} }

where

Author(s)

Ivan Jacob Agaloos Pesigan

References

Yuan, K., Chan, W. (2011). Biases and Standard Errors of Standardized Regression Coefficients. Psychometrika 76, 670-690. doi:10.1007/s11336-011-9224-6.

See Also

Other standard errors of estimates of regression coefficients functions: .sehatbetahatbiased(), .sehatbetahat(), .sehatslopeshatprimedelta(), .sehatslopeshatprimetb(), sehatbetahatbiased(), sehatbetahat(), sehatslopeshatprimetb()

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
# Simple regression------------------------------------------------
X <- jeksterslabRdatarepo::wages.matrix[["X"]]
X <- X[, c(1, ncol(X))]
y <- jeksterslabRdatarepo::wages.matrix[["y"]]
sehatslopeshatprimedelta(X = X, y = y)

# Multiple regression----------------------------------------------
X <- jeksterslabRdatarepo::wages.matrix[["X"]]
# age is removed
X <- X[, -ncol(X)]
sehatslopeshatprimedelta(X = X, y = y)

jeksterslabds/jeksterslabRlinreg documentation built on Jan. 7, 2021, 8:30 a.m.