View source: R/bothsidesmodel.R
| bothsidesmodel | R Documentation |
This function fits the model using least squares. It takes an optional
pattern matrix P as in (6.51), which specifies which \beta _{ij}'s are
zero.
bothsidesmodel(x, y, z = diag(qq), pattern = matrix(1, nrow = p, ncol = l))
x |
An |
y |
The |
z |
A |
pattern |
An optional |
A list with the following components:
The least-squares estimate of \beta.
The P \times L matrix with the ijth element
being the standard error of \hat{\beta}_ij.
The P \times L matrix with the ijth element being
the t-statistic based on \hat{\beta}_{ij}.
The estimated covariance matrix of the \hat{\beta}_{ij}'s.
A p-dimensional vector of the degrees of freedom for the
t-statistics, where the jth component contains the
degrees of freedom for the jth column of \hat{\beta}.
The Q \times Q matrix \hat{\Sigma}_z.
The Q \times Q residual sum of squares and
crossproducts matrix.
bothsidesmodel.chisquare, bothsidesmodel.df,
bothsidesmodel.hotelling, bothsidesmodel.lrt,
and bothsidesmodel.mle.
# Mouth Size Example from 6.4.1
data(mouths)
x <- cbind(1, mouths[, 5])
y <- mouths[, 1:4]
z <- cbind(c(1, 1, 1, 1), c(-3, -1, 1, 3), c(1, -1, -1, 1), c(-1, 3, -3, 1))
bothsidesmodel(x, y, z)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.