restriktor-methods {restriktor} | R Documentation |
Methods for restriktor
Description
restricted estimation and confidence intervals for (robust) linear (in)equality restricted hypotheses.
Usage
## S3 method for class 'restriktor'
print(x, digits = max(3, getOption("digits") - 2), ...)
## S3 method for class 'restriktor'
summary(object, bootCIs = TRUE,
bty = "perc", level = 0.95, goric = "goric", ...)
## S3 method for class 'summary.restriktor'
print(x, digits = max(3, getOption("digits") - 2),
signif.stars = getOption("show.signif.stars"), ...)
## S3 method for class 'restriktor'
coef(object, ...)
## S3 method for class 'restriktor'
model.matrix(object, ...)
## S3 method for class 'restriktor'
logLik(object, ...)
Arguments
object |
an object of class |
x |
an object of class |
bootCIs |
if TRUE (default), nonparametric bootstrap
confidence intervals are generated. Only available if |
bty |
a character string representing the type of interval
required. The value should be any of the values |
level |
the confidence level of the interval (default = 0.95). |
goric |
if |
digits |
the number of significant digits to use when printing. |
signif.stars |
If TRUE, "significance stars are printed for each coefficient. |
... |
no additional arguments for now. |
Details
The function print
returns the restricted coefficients.
The output from the print.summary.conLM
function provides
information that is comparable with the output from
print.summary.lm
. Additional information is provided
about the unrestricted and restricted R-square and by default
the output of the GORIC. If bootstrapped standard errors are
requested (e.g., option se = "boot.model.based"
in the
restriktor
function and bootCI = TRUE
in the
summary function) standard errors and confidence intervals
are provided.
Value
The function summary
computes and returns a list of
summary statistics of the fitted unrestricted and restricted
(robust) linear model given in object
, plus
se.type |
type of standard error computed, equal to input
|
residuals |
the weighted residuals. |
coefficients |
a p x 4 matrix with columns for the
estimated coefficient, its standard error, t-statistic and
corresponding p-value. If |
rdf |
residual degrees of freedom. |
R2.org |
unrestricted R-squared. |
R2.reduced |
restricted R-squared. |
goric |
goric value and attributed its penalty term and log-likelihood. |
Examples
# unrestricted linear model for ages (in months) at which an
# infant starts to walk alone.
# prepare data
DATA <- subset(ZelazoKolb1972, Group != "Control")
# fit unrestricted linear model
fit.lm <- lm(Age ~ -1 + Group, data = DATA)
# restricted linear model with restrictions that the walking
# exercises would not have a negative effect of increasing the
# mean age at which a child starts to walk.
fit.con <- restriktor(fit.lm, constraints = ' GroupActive < GroupPassive < GroupNo ')
summary(fit.con)