covarianceParameters
Extract covariance parameters of linear mixed-effects model
Syntax
Description
[
returns
the covariance parameters and related statistics in psi
,mse
,stats
]
= covarianceParameters(lme
,Name,Value
)stats
with
additional options specified by one or more Name,Value
pair
arguments.
For example, you can specify the confidence level for the confidence limits of covariance parameters.
Input Arguments
lme
— Linear mixed-effects model
LinearMixedModel
object
Linear mixed-effects model, specified as a LinearMixedModel
object constructed using fitlme
or fitlmematrix
.
Name-Value Arguments
Specify optional pairs of arguments as
Name1=Value1,...,NameN=ValueN
, where Name
is
the argument name and Value
is the corresponding value.
Name-value arguments must appear after other arguments, but the order of the
pairs does not matter.
Before R2021a, use commas to separate each name and value, and enclose
Name
in quotes.
Alpha
— Significance level
0.05 (default) | scalar value in the range 0 to 1
Significance level, specified as the comma-separated pair consisting of
'Alpha'
and a scalar value in the range 0 to 1. For a value α,
the confidence level is 100*(1–α)%.
For example, for 99% confidence intervals, you can specify the confidence level as follows.
Example: 'Alpha',0.01
Data Types: single
| double
Output Arguments
psi
— Estimate of covariance parameters
cell array
Estimate of covariance parameters that parameterize the prior
covariance of the random effects, returned as a cell array of length R,
such that psi{r}
contains the covariance matrix
of random effects associated with grouping variable gr, r =
1, 2, ..., R. The order of grouping variables is
the same order you enter when you fit the model.
mse
— Residual variance estimate
scalar value
Residual variance estimate, returned as a scalar value.
stats
— Covariance parameter estimates and related statistics
cell array
Covariance parameter estimates and related statistics, returned as a cell array of length (R + 1) containing dataset arrays with the following columns.
Group | Grouping variable name |
Name1 | Name of the first predictor variable |
Name2 | Name of the second predictor variable |
Type |
|
Estimate |
Standard deviation of the random effect associated
with predictor Correlation between the random effects associated with
predictors |
Lower | Lower limit of a 95% confidence interval for the covariance parameter |
Upper | Upper limit of a 95% confidence interval for the covariance parameter |
stats{r}
is a dataset array containing statistics
on covariance parameters for the rth grouping variable, r =
1, 2, ..., R. stats{R+1}
contains
statistics on the residual standard deviation. The dataset array for
the residual error has the fields Group
, Name
, Estimate
, Lower
,
and Upper
.
Examples
Two Random-Effects Terms for Intercept
Load the sample data.
load('fertilizer.mat');
The dataset array includes data from a split-plot experiment, where soil is divided into three blocks based on the soil type: sandy, silty, and loamy. Each block is divided into five plots, where five different types of tomato plants (cherry, heirloom, grape, vine, and plum) are randomly assigned to these plots. The tomato plants in the plots are then divided into subplots, where each subplot is treated by one of four fertilizers. This is simulated data.
Store the data in a dataset array called ds
, for practical purposes, and define Tomato
, Soil
, and Fertilizer
as categorical variables.
ds = fertilizer; ds.Tomato = nominal(ds.Tomato); ds.Soil = nominal(ds.Soil); ds.Fertilizer = nominal(ds.Fertilizer);
Fit a linear mixed-effects model, where Fertilizer
is the fixed-effects variable, and the mean yield varies by the block (soil type), and the plots within blocks (tomato types within soil types) independently. This model corresponds to
where = 1, 2, ..., 60 corresponds to the observations, = 2, ..., 5 corresponds to the tomato types, and = 1, 2, 3 corresponds to the blocks (soil). represents the th soil type, and represents the th tomato type nested in the th soil type. is the dummy variable representing the level of the tomato type.
The random effects and observation error have the following prior distributions: , , and .
lme = fitlme(ds,'Yield ~ Fertilizer + (1|Soil) + (1|Soil:Tomato)');
Compute the covariance parameter estimates (estimates of and ) of the random-effects terms.
psi = covarianceParameters(lme)
psi=2×1 cell array
{[8.6395e-17]}
{[ 352.8481]}
Compute the residual variance ().
[~,mse] = covarianceParameters(lme)
mse = 151.9007
Potentially Correlated Random-Effects Terms
Load the sample data.
load('weight.mat');
weight
contains data from a longitudinal study, where 20 subjects are randomly assigned to 4 exercise programs, and their weight loss is recorded over six 2-week time periods. This is simulated data.
Store the data in a dataset array. Define Subject
and Program
as categorical variables.
ds = dataset(InitialWeight,Program,Subject,Week,y); ds.Subject = nominal(ds.Subject); ds.Program = nominal(ds.Program);
Fit a linear mixed-effects model where the initial weight, type of program, week, and the interaction between the week and type of program are the fixed effects. The intercept and week vary by subject.
For 'reference'
dummy variable coding, fitlme
uses Program A as reference and creates the necessary dummy variables . This model corresponds to
where corresponds to the observation number, , and corresponds to the subject number, . are the fixed-effects coefficients, , and and are random effects. stands for initial weight and is a dummy variable representing a type of program. For example, is the dummy variable representing Program B.
The random effects and observation error have the following prior distributions:
and
lme = fitlme(ds,'y ~ InitialWeight + Program + (Week|Subject)');
Compute the estimates of covariance parameters for the random effects.
[psi,mse,stats] = covarianceParameters(lme)
psi = 1x1 cell array
{2x2 double}
mse = 0.0105
stats=2×1 cell array
{3x7 classreg.regr.lmeutils.titleddataset}
{1x5 classreg.regr.lmeutils.titleddataset}
mse
is the estimated residual variance. It is the estimate for .
To see the covariance parameters estimates for the random-effects terms (, , and ), index into psi
.
psi{1}
ans = 2×2
0.0572 0.0490
0.0490 0.0624
The estimate of the variance of the random effects term for the intercept, , is 0.0572. The estimate of the variance of the random effects term for week, , is 0.0624. The estimate for the covariance of the random effects terms for the intercept and week, , is 0.0490.
stats
is a 2-by-1 cell array. The first cell of stats
contains the confidence intervals for the standard deviation of the random effects and the correlation between the random effects for intercept and week. To display them, index into stats
.
stats{1}
ans = Covariance Type: FullCholesky Group Name1 Name2 Type Estimate Lower Upper Subject {'(Intercept)'} {'(Intercept)'} {'std' } 0.23927 0.14364 0.39854 Subject {'Week' } {'(Intercept)'} {'corr'} 0.81971 0.38662 0.95658 Subject {'Week' } {'Week' } {'std' } 0.2497 0.18303 0.34067
The display shows the name of the grouping parameter (Group
), the random-effects variables (Name1
, Name2
), the type of the covariance parameters (Type
), the estimate (Estimate
) for each parameter, and the 95% confidence intervals for the parameters (Lower
, Upper
). The estimates in this table are related to the estimates in psi
as follows.
The standard deviation of the random-effects term for intercept is 0.23927 = sqrt(0.0527). Likewise, the standard deviation of the random effects term for week is 0.2497 = sqrt(0.0624). Finally, the correlation between the random-effects terms of intercept and week is 0.81971 = 0.0490/(0.23927*0.2497).
Note that this display also shows which covariance pattern you use when fitting the model. In this case, the covariance pattern is FullCholesky
. To change the covariance pattern for the random-effects terms, you must use the 'CovariancePattern'
name-value pair argument when fitting the model.
The second cell of stats
includes similar statistics for the residual standard deviation. Display the contents of the second cell.
stats{2}
ans = Group Name Estimate Lower Upper Error {'Res Std'} 0.10261 0.087882 0.11981
The estimate for residual standard deviation is the square root of mse
, 0.10261 = sqrt(0.0105).
Two Grouping Variables
Load the sample data.
load carbig
Fit a linear mixed-effects model for miles per gallon (MPG), with fixed effects for acceleration and weight, a potentially correlated random effect for intercept and acceleration grouped by model year, and an independent random effect for weight, grouped by the origin of the car. This model corresponds to
where represents the levels for the variable Model_Year
, and represents the levels for the variable Origin
. is the miles per gallon for the ith observation,|m| th model year, and|k| th origin that correspond to the ith observation. The random-effects terms and the observation error have the following prior distributions:
Here, the random-effects term represents the first random effect at level of the first grouping variable. The random-effects term corresponds to the first random effects term (1), for the intercept (0), at the th level ( ) of the first grouping variable. Likewise is the level for the first predictor (1) in the first random-effects term (1).
Similarly, stands for the second random effects-term at level of the second grouping variable.
is the variance of the random-effects term for the intercept, is the variance of the random effects term for the predictor acceleration, and is the covariance of the random-effects terms for the intercept and the predictor acceleration. is the variance of the second random-effects term, and is the residual variance.
First, prepare the design matrices for fitting the linear mixed-effects model.
X = [ones(406,1) Acceleration Weight]; Z = {[ones(406,1) Acceleration],[Weight]}; Model_Year = nominal(Model_Year); Origin = nominal(Origin); G = {Model_Year,Origin};
Fit the model using the design matrices.
lme = fitlmematrix(X,MPG,Z,G,'FixedEffectPredictors',.... {'Intercept','Acceleration','Weight'},'RandomEffectPredictors',... {{'Intercept','Acceleration'},{'Weight'}},'RandomEffectGroups',{'Model_Year','Origin'});
Compute the estimates of covariance parameters for the random effects.
[psi,mse,stats] = covarianceParameters(lme)
psi=2×1 cell array
{2x2 double }
{[6.6765e-08]}
mse = 9.0756
stats=3×1 cell array
{3x7 classreg.regr.lmeutils.titleddataset}
{1x7 classreg.regr.lmeutils.titleddataset}
{1x5 classreg.regr.lmeutils.titleddataset}
The residual variance mse
is 9.0755. psi
is a 2-by-1 cell array, and stats
is a 3-by-1 cell array. To see the contents, you must index into these cell arrays.
First, index into the first cell of psi
.
psi{1}
ans = 2×2
8.2651 -0.8697
-0.8697 0.1157
The first cell of psi
contains the covariance parameters for the correlated random effects for intercept as 8.5160, and for acceleration as 0.1087. The estimate for the covariance of the random-effects terms for the intercept and acceleration is -0.8387.
Now, index into the second cell of psi
.
psi{2}
ans = 6.6765e-08
The second cell of psi
contains the estimate for the variance of the random-effects term for weight .
Index into the first cell of stats
.
stats{1}
ans = Covariance Type: FullCholesky Group Name1 Name2 Type Estimate Lower Upper Model_Year {'Intercept' } {'Intercept' } {'std' } 2.8749 1.0489 7.8795 Model_Year {'Acceleration'} {'Intercept' } {'corr'} -0.88956 -0.98668 -0.32496 Model_Year {'Acceleration'} {'Acceleration'} {'std' } 0.34008 0.19355 0.59756
This table shows the standard deviation estimates for the random-effects terms for intercept and acceleration. Note that the standard deviations estimates are the square roots of the diagonal elements in the first cell of psi
. Specifically, 2.9182 = sqrt(8.5160) and 0.32968 = sqrt(0.1087). The correlation is a function of the covariance of intercept and acceleration, and the standard deviations of intercept and acceleration. The covariance of intercept and acceleration is the off-diagonal value in the first cell of psi, -0.8387. So, the correlation is -.8387/(0.32968*2.92182) = -0.87.
The grouping variable for intercept and acceleration is Model_Year
.
Index into the second cell of stats
.
stats{2}
ans = Covariance Type: FullCholesky Group Name1 Name2 Type Estimate Lower Upper Origin {'Weight'} {'Weight'} {'std'} 0.00025839 9.0876e-05 0.00073469
The second cell of stats
has the standard deviation estimate and the 95% confidence limits for the standard deviation of the random-effects term for Weight
. The grouping variable is Origin
.
Index into the third cell of stats
.
stats{3}
ans = Group Name Estimate Lower Upper Error {'Res Std'} 3.0126 2.8025 3.2384
The third cell of stats
contains the estimate for residual standard deviation and the 95% confidence limits. The estimate for residual standard deviation is the square root of mse
, sqrt(9.0755) = 3.0126.
Construct 99% confidence intervals for the covariance parameters.
[~,~,stats] = covarianceParameters(lme,'Alpha',0.01);
stats{1}
ans = Covariance Type: FullCholesky Group Name1 Name2 Type Estimate Lower Upper Model_Year {'Intercept' } {'Intercept' } {'std' } 2.8749 0.76412 10.817 Model_Year {'Acceleration'} {'Intercept' } {'corr'} -0.88956 -0.99323 0.0030059 Model_Year {'Acceleration'} {'Acceleration'} {'std' } 0.34008 0.16213 0.71336
stats{2}
ans = Covariance Type: FullCholesky Group Name1 Name2 Type Estimate Lower Upper Origin {'Weight'} {'Weight'} {'std'} 0.00025839 6.544e-05 0.0010203
stats{3}
ans = Group Name Estimate Lower Upper Error {'Res Std'} 3.0126 2.7396 3.3128
See Also
Open Example
You have a modified version of this example. Do you want to open this example with your edits?
MATLAB Command
You clicked a link that corresponds to this MATLAB command:
Run the command by entering it in the MATLAB Command Window. Web browsers do not support MATLAB commands.
Select a Web Site
Choose a web site to get translated content where available and see local events and offers. Based on your location, we recommend that you select: .
You can also select a web site from the following list:
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.
Americas
- América Latina (Español)
- Canada (English)
- United States (English)
Europe
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)