| lm_star {countSTAR} | R Documentation |
Fitting frequentist STAR linear model via EM algorithm
Description
Compute the MLEs and log-likelihood for the STAR linear model. The regression coefficients are estimated using least squares within an EM algorithm.
Usage
lm_star(
formula,
data = NULL,
transformation = "np",
y_max = Inf,
sd_init = 10,
tol = 10^-10,
max_iters = 1000
)
Arguments
formula |
an object of class " |
data |
an optional data frame, list or environment (or object coercible by as.data.frame to a data frame)
containing the variables in the model; like |
transformation |
transformation to use for the latent data; must be one of
|
y_max |
a fixed and known upper bound for all observations; default is |
sd_init |
add random noise for EM algorithm initialization scaled by |
tol |
tolerance for stopping the EM algorithm; default is 10^-10; |
max_iters |
maximum number of EM iterations before stopping; default is 1000 |
Details
Standard function calls including
coefficients, fitted, and residuals apply. Fitted values are the expectation
at the MLEs, and as such are not necessarily count-valued.
Value
an object of class "lmstar", which is a list with the following elements:
-
coefficientsthe MLEs of the coefficients -
fitted.valuesthe fitted values at the MLEs -
g.hata function containing the (known or estimated) transformation -
ginv.hata function containing the inverse of the transformation -
sigma.hatthe MLE of the standard deviation -
mu.hatthe MLE of the conditional mean (on the transformed scale) -
z.hatthe estimated latent data (on the transformed scale) at the MLEs -
residualsthe Dunn-Smyth residuals (randomized) -
residuals_repthe Dunn-Smyth residuals (randomized) for 10 replicates -
logLikthe log-likelihood at the MLEs -
logLik0the log-likelihood at the MLEs for the *unrounded* initialization -
lambdathe Box-Cox nonlinear parameter and other parameters that (1) track the parameters across EM iterations and (2) record the model specifications
Note
Infinite latent data values may occur when the transformed Gaussian model is highly inadequate. In that case, the function returns the *indices* of the data points with infinite latent values, which are significant outliers under the model. Deletion of these indices and re-running the model is one option, but care must be taken to ensure that (i) it is appropriate to treat these observations as outliers and (ii) the model is adequate for the remaining data points.
References
Kowal, D. R., & Wu, B. (2021). Semiparametric count data regression for selfâreported mental health. Biometrics. doi:10.1111/biom.13617
Examples
# Simulate data with count-valued response y:
sim_dat = simulate_nb_lm(n = 100, p = 3)
y = sim_dat$y; X = sim_dat$X
# Fit model
fit_em = lm_star(y~X)
# Fitted coefficients:
coef(fit_em)
# Fitted values:
y_hat = fitted(fit_em)
plot(y_hat, y);
# Residuals:
plot(residuals(fit_em))
qqnorm(residuals(fit_em)); qqline(residuals(fit_em))