11 Statistical Methods Used in EdSurvey

11.1 Introduction

This chapter describes estimation procedures for EdSurvey. It includes the estimation of means (including regression analysis), percentages, and their degrees of freedom; the estimation of weighted mixed models with plausible values; the multivariate regression method; and the Wald test. The estimation of correlation coefficients appears in a vignette in the wCorr package.11

Which estimation procedure is used for any statistic appears in the Help file for the function that creates the statistic. For example, to find the estimation procedure used for the standard error of the regression coefficients, use ?lm.sdf to see the manual entry.

This chapter uses many symbols; a table of the symbols follows for reference. Terms used only once are defined immediately before or after equations, so they do not appear in this table.

Symbol Meaning
\(A\) A random variable
\(B\) Another random variable
\(i\) An index used for observations
\(j\) An index used for jackknife replicates
\(J\) The number of jackknife replicates
\(m\) The number of plausible values
\(m^*\) The number of plausible values used in a calculation
\(n\) The number of units in the sample
\(p\) An index used for plausible values
\(w_i\) The \(i\)th unit’s full sample weight
\(x_i\) The \(i\)th unit’s value for some variable
\(\boldsymbol{\mathbf{X}}\) A matrix of predictor variables in a regression
\(\boldsymbol{\mathbf{y}}\) A vector of predicted variables in a regression
\(\boldsymbol{\mathbf{\beta}}\) The regression coefficients in a regression
\(\epsilon\) The residual term in a regression
\(\gamma\) The sampling variance multiplier
\(\mathcal{A}\) The set of sampled units that is in a population of interest (e.g., Black females)
\(\tilde{\mathcal{A}}\) The set of population units that is in a population of interest (e.g., Black females)
\(\mathcal{U}\) The set of sampled units that is in a population that contains \(\mathcal{A}\) (e.g., Black individuals)
\(\tilde{\mathcal{U}}\) The set of population units that is in a population that contains \(\mathcal{A}\) (e.g., Black individuals)

The remainder of this chapter describes estimation procedures used in EdSurvey. Sections are organized as follows:

  • estimation of means
  • estimation of percentages
  • the methods for weighted mixed models with plausible values
  • the methods for multivariate multiple regression
  • the Wald test method

Each section starts by describing estimation of the statistic, followed by estimation procedures of the variances of the statistic. Separate sections address situations where plausible values are present and situations where plausible values are not present. For sections on variance estimation, separate sections address the jackknife or Taylor series variance estimators.

In NAEP surveys where linking error is relevant, an alternative methodology for calculating standard errors is used. This methodology applies only for variables that end in _linking for example, composite_linking. For the NAEP linking error methods, see the next chapter. All other methods are detailed in this chapter.

11.2 Estimation of Weighted Means

This section concerns the estimation of means, including regression coefficients and the standard errors of means and regression coefficients.

11.2.1 Estimation of Weighted Means When Plausible Values Are Not Present

Weighted means are estimated according to \[\begin{align} \mu_x = \frac{\sum_{i=1}^n w_i x_i}{\sum_{i=1}^n w_i} \end{align}\] where \(x_i\) and \(w_i\) are the outcome and weight, respectively, of the \(i\)th unit, and \(n\) is the total number of units in the sample.

For regressions of the form \[\begin{align} \boldsymbol{\mathbf{y}}=\boldsymbol{\mathbf{X\beta}} + \boldsymbol{\mathbf{\epsilon}} \end{align}\] a weighted regression is used so that the estimated coefficients (\(\boldsymbol{\mathbf{\beta}}\)) minimize the weighted square residuals: \[\begin{align} \boldsymbol{\mathbf{\beta}} = \mathrm{ArgMin}_{\boldsymbol{\mathbf{b}}} \sum_{i=1}^n w_i (y_i-\boldsymbol{\mathbf{X}}_i \boldsymbol{\mathbf{b}})^2 \end{align}\] where \(\boldsymbol{\mathbf{X}}_i\) is the \(i\)th row of \(\boldsymbol{\mathbf{X}}\), and \(\mathrm{ArgMin}_{\boldsymbol{\mathbf{b}}}\) means that the value of \(\boldsymbol{\mathbf{b}}\) minimizes the expression that follows it.

11.2.2 Estimation of Weighted Means When Plausible Values Are Present

When the variable \(x\) has plausible values, these then form the mean estimate (\(\mu\)) according to \[\begin{align} \mu = \frac{1}{m} \sum_{p=1}^{m} \frac{\sum_{i=1}^n w_i x_{ip}}{\sum_{i=1}^n w_i} \end{align}\] where \(x_{ip}\) is the \(p\)th plausible value for the \(i\)th unit’s outcome, with \(m\) plausible values for each unit.

For regressions, the coefficient estimates are simply averaged over the plausible values, \[\begin{align} \boldsymbol{\mathbf{\beta}} = \frac{1}{m} \sum_{p=1}^{m} \boldsymbol{\mathbf{\beta}}_p \end{align}\] where \(\boldsymbol{\mathbf{\beta}}_p\) is the vector of estimated regression coefficients, calculated using the \(p\)th set of plausible values.

11.2.2.1 Estimation of the Coefficient of Determination in a Weighted Linear Regression

In regression analysis, statistics such as the coefficient of determination (i.e., \(R\)-squared) are estimated across all observations. These statistics average the values across the regression runs (one per set of plausible values). For example, \[\begin{align} R^2 = \frac{1}{m} \sum_{p=1}^m R^2_p \end{align}\] where \(R^2_p\) is the \(R\)-squared value for the regression run with the \(p\)th set of plausible values.

For a particular regression, (Weisberg, 1985, Eq. 2.31) defined the \(R\)-squared as \[\begin{align} R^2 = 1 - \frac{RSS}{SYY} \end{align}\] where \(RSS=\boldsymbol{\mathbf{e}}^T \boldsymbol{\mathbf{We}}\) (Weisberg, 1985, Eq. 4.2), and \(SYY=(\boldsymbol{\mathbf{y}}-\bar{y})^T \boldsymbol{\mathbf{W}} (\boldsymbol{\mathbf{y}}-\bar{y})\); \(\bar{y}\) is the weighted mean of the outcome, and \(\boldsymbol{\mathbf{e}} = \boldsymbol{\mathbf{y}} - \boldsymbol{\mathbf{X\beta}}\).

11.2.3 Estimation of Standard Deviations

When the user desires a measure of the dispersion of a variable with plausible values, the weighted variance estimate is calculated according to \[\begin{align} \hat{s}^2 = \frac{\sum_{i=1}^{n} w_i (x_i - \mu_x)^2}{\sum_{i=1}^{n} w_i} \end{align}\] where \(\mu_x\) is the weighted mean. When there are several plausible values, average the variance across the plausible values (calculating \(\mu_x\) per plausible value).

The estimate of the standard deviation is the square root of the estimated variance.

11.2.4 Estimation of Standardized Regression Coefficients

Using the definition of the standardized regression coefficients (\(b\)),

\[\begin{align} b_j = \frac{\tilde{\sigma}_y}{\tilde{\sigma}_{X_j}} \beta_j \end{align}\] where \(b_j\) is the standardized regression coefficient associated with the \(j\)th regressor, \(\tilde{\sigma}_y\) is the weighted standard deviation of the outcome variable, and \(\tilde{\sigma}_{X_j}\) is the weighted standard deviation of the \(j\)th regressor.

11.2.4.1 Default Variance Estimation of Standardized Regression Coefficients

The default standard error of the standardized regression coefficients then treats the standard error estimates as constants, as follows:

\[\begin{align} \sigma_{b_j} = \frac{\sigma_y}{\sigma_{X_j}} \sigma_{\beta_j} \end{align}\]

11.2.4.2 Sampling Variance Estimation of Standardized Regression Coefficients

An alternative method estimates the standardized regression coefficients using the same process but estimates their standard error, accounting for the design-based sampling variance.

This method estimates the standardized regression coefficients per plausible value and jackknife replicate. When estimating the standardized regression coefficient for a plausible value, the overall variance of the outcome (\(\tilde{\sigma}{y}\)) and the regressors (\(\tilde{\sigma}_{X_j}\)) is used. For a jackknife replicate, the values of \(\tilde{\sigma}_y\) and \(\tilde{\sigma}_{X_j}\) are updated with the jackknife replicate weights.

Estimating the variance for the standardized regression coefficient proceeds identically to estimating the variance of the regressors, and the weighted standard deviations also are updated with the jackknife replicate weights.

11.2.5 Estimation of Standard Errors of Weighted Means When Plausible Values Are Not Present, Using the Jackknife Method

When the predicted value does not have plausible values and the requested variance method is jackknife, estimate the variance of the coefficients (\(\boldsymbol{\mathbf{V}}_J\)) as follows: \[\begin{align} \boldsymbol{\mathbf{V}}_J=\boldsymbol{\mathbf{V}}_{jrr,0} = \gamma \sum_{j=1}^J (\boldsymbol{\mathbf{\beta}}_j - \boldsymbol{\mathbf{\beta}}_0)^2 \end{align}\] where \(\gamma\) is a constant equal to one for the jackknife variance estimation method, its inclusion allows us to extend the equations to other variance estimation methods, such as balanced repeated replication (Wolter, 2007) or Fay’s method (Judkins, 1990); \(\boldsymbol{\mathbf{\beta}}_j\) is the coefficient estimated with the \(j\)th jackknife replicate weight; \(\boldsymbol{\mathbf{\beta}}_0\) is the coefficient estimated with the sample weight; and \(J\) is the total number of jackknife replicate weights.

The covariance between \(\beta_l\) and \(\beta_m\) (\(C_{J;lm}\)) is estimated as \[\begin{align} C_{J;lm}=C_{jrr,0;lm} = \gamma \sum_{j=1}^J (\beta_{j;l} - \beta_{0;l})(\beta_{j;m} - \beta_{0;m}) \end{align}\] where subscripts after the semicolon indicate the matrix element (two subscripts) of the covariance matrix (\(\boldsymbol{\mathbf{C}}\)) or the vector element (one subscript) for the estimate vector \(\boldsymbol{\mathbf{\beta}}\). The other subscripts are as with the variance estimation.

11.2.6 Estimation of Standard Errors of Weighted Means When Plausible Values Are Present, Using the Jackknife Method

When the predicted value has plausible values and the requested variance method is jackknife, estimate the variance (\(\boldsymbol{\mathbf{V}}_{JP}\)) as the sum of a variance component from the plausible values (also called imputation values so that the variance term is called \(\boldsymbol{\mathbf{V}}_{imp}\)) and estimate the sampling variance using plausible values (\(\boldsymbol{\mathbf{V}}_{jrr,P}\)) according to the following formula: \[\begin{align} \boldsymbol{\mathbf{V}}_{JP}=\boldsymbol{\mathbf{V}}_{imp} + \boldsymbol{\mathbf{V}}_{jrr,P} \end{align}\]

The sampling variance is \[\begin{align} \boldsymbol{\mathbf{V}}_{jrr,P} = \frac{1}{m^*} \sum_{i=1}^{m^*} \boldsymbol{\mathbf{V}}_{jrr,p} \ \end{align}\]\end{align} In this equation, \(m^*\) is a number that can be as small as one or as large as the number of plausible values.12 In the previous equation, \(\boldsymbol{\mathbf{V}}_{jrr,P}\) is the average of \(\boldsymbol{\mathbf{V}}_{jrr,p}\) over the plausible values, and the values of \(\boldsymbol{\mathbf{V}}_{jrr,p}\) are calculated in a way analogous to \(\boldsymbol{\mathbf{V}}_{jrr,0}\) in the previous section, except that the \(p\)th plausible values are used within each step: \[\begin{align} \boldsymbol{\mathbf{V}}_{jrr,p} = \gamma \sum_{j=1}^{J} (\boldsymbol{\mathbf{\beta}}_{jp} - \boldsymbol{\mathbf{\beta}}_{0p})^2 \end{align}\]

The imputation variance is estimated according to Rubin (1987): \[\begin{align} \boldsymbol{\mathbf{V}}_{imp} = \frac{m+1}{m(m-1)} \sum_{p=1}^m (\boldsymbol{\mathbf{\beta}}_p - \boldsymbol{\mathbf{\beta}})^2 \end{align}\] where \(m\) is the number of plausible values, \(\boldsymbol{\mathbf{\beta}}_p\) is the vector of coefficients calculated with the \(p\)th set of plausible values, and \(\boldsymbol{\mathbf{\beta}}\) is the estimated coefficient vector averaged over all plausible values.

Covariance terms between \(\beta_l\) and \(\beta_m\) are estimated according to \[\begin{align} C_{JP;lm}=C_{imp;lm} + C_{jrr,P;lm} \end{align}\] where subscripts after a semicolon indicate the indexes of the covariance term being identified: \[\begin{align} C_{jrr,p;lm} = \gamma \sum_{j=1}^{J} (\beta_{jp;l} - \beta_{0p;l}) (\beta_{jp;m} - \beta_{0p;m}) \end{align}\] and \[\begin{align} \boldsymbol{\mathbf{C}}_{imp;lm} = \frac{m+1}{m(m-1)} \sum_{p=1}^m (\beta_{p;l} - \beta_{l}) (\beta_{p;m} - \beta_{m}) \end{align}\] where \(\beta_l\) and \(\beta_m\) are the estimates averaged across all the plausible values.

11.2.7 Estimation of Standard Errors of Weighted Means When Plausible Values Are Not Present, Using the Taylor Series Method

When the predicted value does not have plausible values and the requested variance method is the Taylor series, the variance of the coefficients (\(\boldsymbol{\mathbf{V}}_{T}\)) is estimated as13. \[\begin{align} \boldsymbol{\mathbf{V}}_{T}=\boldsymbol{\mathbf{V}}_{Taylor,0}(\boldsymbol{\mathbf{\beta}}) = \boldsymbol{\mathbf{D}}^T \boldsymbol{\mathbf{Z D}} \end{align}\] \(\boldsymbol{\mathbf{V}}_T\) is a matrix, so the variance estimates are along the diagonal, whereas covariances are the off-diagonal elements. Then \(\boldsymbol{\mathbf{V}}_T\) is estimated by \[\begin{align} \boldsymbol{\mathbf{D}}= (\boldsymbol{\mathbf{X}}^T \boldsymbol{\mathbf{W X}})^{-1} \end{align}\] \(\boldsymbol{\mathbf{X}}\) is the matrix of regressors, the \(\boldsymbol{\mathbf{W}}\) matrix is a diagonal matrix with the \(i\)th weight in the \(i\)th diagonal element, and \[\begin{align} \boldsymbol{\mathbf{Z}} = \sum_{j=1}^{J} \frac{n_s}{n_s-1} \sum_{u=1}^{n_s} \boldsymbol{\mathbf{z}}_{uj} \boldsymbol{\mathbf{z}}_{uj}^T \end{align}\] where the inner sum is over the sampled PSUs (\(u\)), of which there are \(n_s\), and the outer sum is over all units in the jackknife replicate strata (\(j\)), of which there are still \(J\). Only strata with at least two PSUs that have students are included in the sum; others are simply excluded.14 For a mean, \(\boldsymbol{\mathbf{z}}_{uj}\) is a scalar; for a regression, \(\boldsymbol{\mathbf{z}}_{uj}\) is a vector with an entry for each regressor. In what follows, when the estimand is a mean, \(\boldsymbol{\mathbf{X}}\) simply would be a column vector of ones.

Define the estimated residual vector (\(\boldsymbol{\mathbf{e}}\)) as \[\begin{align} \boldsymbol{\mathbf{e}} = \boldsymbol{\mathbf{y}}-\boldsymbol{\mathbf{X\beta}} \end{align}\] and define the term \[\begin{align} U_{ik} = e_i X_{ik} w_{i} \end{align}\] where \(i\) indexes the matrix row (observation) and \(k\) indexes the matrix column (regressor). Then the \(k\)th entry of \(\boldsymbol{\mathbf{z}}_{uj}\) is given by \[\begin{align} z_{ujk} = \sum_{i\in\mathcal{Q}_{uj}}^{n_s} \left[U_{ik} - \left( \frac{1}{n_s}\sum_{i'\in\mathcal{Q}_{j}}^{n_s} U_{i'k} \right) \right] \end{align}\] where \(\mathcal{Q}_{uj}\) is the indices for observations in the \(u\)th PSU of the \(j\)th stratum, and \(\mathcal{Q}_{j}\) is the indices for observations in the \(j\)th stratum (across all PSUs). Thus, when two PSUs are selected per stratum, the value of \(\boldsymbol{\mathbf{z}}\) will be related by \(\boldsymbol{\mathbf{z}}_{1j}= \operatorname{-}\boldsymbol{\mathbf{z}}_{2j}\).

11.2.8 Estimation of Standard Errors of Weighted Means When Plausible Values Are Present, Using the Taylor Series Method

When the predicted value has plausible values and the requested variance method is the Taylor series, the variance of the coefficients (\(\boldsymbol{\mathbf{V}}_{TP}\)) is estimated as \[\begin{align} \boldsymbol{\mathbf{V}}_{TP}=\boldsymbol{\mathbf{V}}_{Taylor,P}(\boldsymbol{\mathbf{\beta}}) + \boldsymbol{\mathbf{V}}_{imp} \end{align}\] where the equation for \(\boldsymbol{\mathbf{V}}_{imp}\) and \(\boldsymbol{\mathbf{C}}_{imp}\) is given in the section on the jackknife variance estimator and where \(\boldsymbol{\mathbf{V}}_{Taylor,P}\) is averaged over the plausible values according to \[\begin{align} \boldsymbol{\mathbf{V}}_{Taylor,P} = \frac{1}{m} \sum_{p=1}^m \boldsymbol{\mathbf{V}}_{Taylor}(\boldsymbol{\mathbf{\beta}}_p) \end{align}\] where \(\boldsymbol{\mathbf{V}}_{Taylor}(\boldsymbol{\mathbf{\beta}}_p)\) is calculated as in the previous section, using the \(p\)th plausible values to form \(\boldsymbol{\mathbf{e}}\), so that \[\begin{align} \boldsymbol{\mathbf{e}}=\boldsymbol{\mathbf{y}}_p - \boldsymbol{\mathbf{X\beta}}_p \end{align}\] The remainder of the calculation of \(U_{ik}\) and \(z_{ujk}\) is otherwise identical.

11.2.9 Estimation of Standard Errors of Differences of Means

Occasionally, two means (\(\mu_1\) and \(\mu_2\)) are calculated for potentially overlapping groups. When this calculation is done, the difference (\(\Delta = \mu_1 - \mu_2\)) may be of interest. When a covariance term is available, estimate the variance of this difference by using the formula \[\begin{align} \sigma_{\Delta}^2 = \sigma_1^2 + \sigma_2^2 - 2 \sigma_{12} \end{align}\] where \(\sigma_{12}\) is the covariance of \(\mu_1\) and \(\mu_2\).

When no covariance term is available, the approximate equation is used, such that \[\begin{align} \sigma_{\Delta}^2 = \sigma_1^2 + \sigma_2^2 - 2 p \sigma_m^2 \end{align}\] where a subscript of \(m\) is used to indicate the subset that has more observations, and \(p\) is the ratio of the number of observations used in calculating both \(\mu_1\) and \(\mu_2\) divided by the \(n\) size of the larger of the two samples.

When one group is a subset of the other, this is a part-whole comparison. Part-whole comparisons in the NAEP context apply to comparisons between jurisdictions (e.g., a state versus the nation). Please use caution when implementing this method with other types of gap comparisons.

11.3 Estimation of Weighted Percentages

Percentages estimate the proportion of individuals in a group who have some characteristic (e.g., the percentage of Black students who are female). This often is called a “domain.” In the population, the universe is the set \(\tilde{\mathcal{U}}\); in the example, \(\tilde{\mathcal{U}}\) is Black students who are eligible for sampling. The tilde indicates that this set is in the population.15 The sought-after percentage is then the percentage of individuals in the subset \(\tilde{\mathcal{A}} \subseteq \tilde{\mathcal{U}}\). In the example, \(\tilde{\mathcal{A}}\) is the set of Black females who are eligible for sampling. The percentage for which an estimate is desired is then 100 times the number of individuals in \(\tilde{\mathcal{A}}\) divided by the number of individuals in \(\tilde{\mathcal{U}}\). Mathematically, \[\begin{align} \Pi=100 \times \frac{|\tilde{\mathcal{A}}|}{|\tilde{\mathcal{U}|}} \end{align}\] where \(|\cdot|\) is the cardinality, or the count of the number of members in a set. In this example, \(\tilde{\mathcal{U}}\) was itself a subset of the entire eligible population. In other cases, \(\tilde{\mathcal{U}}\) simply could be the population of eligible individuals. Then the value \(\Pi\) would represent the percentage of eligible individuals who were Black females.

The remainder of this section describes statistics meant to estimate \(\Pi\) and the variance of those estimates.

11.3.1 Estimation of Weighted Percentages When Plausible Values Are Not Present

In the sample, units are identified as in \(\mathcal{A}\) and \(\mathcal{U}\) (where the tilde is dropped to indicate sampled sets) and the estimator is16 \[\begin{align} \pi=100 \times \frac{\sum_{i \in \mathcal{A}} w_i }{\sum_{i \in \mathcal{U}} w_i } \end{align}\] where \(\pi\) is the estimated percentage.

Another statistic of interest is the weighted sample size of \(\mathcal{A}\), or an estimate of the number of individuals in the population who are members of \(\tilde{\mathcal{A}}\). This is calculated with \(\sum_{i \in \mathcal{A}} w_i\).

11.3.2 Estimation of Weighted Percentages When Plausible Values Are Present

If membership in \(\mathcal{A}\) or both \(\mathcal{A}\) and \(\mathcal{U}\) depends on a measured score being in a range, then the value of \(\Pi\) is estimated once for each set of plausible values (indexed by \(p\)) by \[\begin{align} \pi=100 \times \frac{1}{m} \sum_{p=1}^m \frac{\sum_{i \in \mathcal{A}_p} w_i }{\sum_{i \in \mathcal{U}_p} w_i } \end{align}\] When membership in \(\mathcal{U}\) is not associated with the plausible value, \(\mathcal{U}_p\) will be the same for all sets of plausible values. The same applies to \(\mathcal{A}_p\).

11.3.3 Estimation of the Standard Error of Weighted Percentages When Plausible Values Are Not Present, Using the Jackknife Method

When membership in \(\mathcal{A}\) and \(\mathcal{U}\) is not dependent on plausible values and the requested variance method is jackknife, estimate the variance of the percentage (\(\boldsymbol{\mathbf{V}}_{\pi,J}\)) as follows: \[\begin{align} \boldsymbol{\mathbf{V}}_{\pi,J}=100^2 \times \boldsymbol{\mathbf{V}}_{jrr,f,0} \end{align}\] where the jackknife variance of the fraction is given by \[\begin{align} \boldsymbol{\mathbf{V}}_{jrr,f,0} = \gamma \sum_{j=1}^J \left( \frac{\sum_{i\in\mathcal{A}} w_{ij} }{\sum_{i\in\mathcal{U}} w_{ij} } - \frac{\sum_{i\in\mathcal{A}} w_i }{\sum_{i\in\mathcal{U}} w_i } \right)^2 \end{align}\] The subscript \(j\) indicates that the weights for the \(j\)th jackknife replicates are being used, and weights that do not contain a second subscript are the student full sample weights.

11.3.4 Estimation of the Standard Error of Weighted Percentages When Plausible Values Are Present, Using the Jackknife Method

When membership in \(\mathcal{A}\) and \(\mathcal{U}\) depends on plausible values and the requested variance method is jackknife, estimate the variance of the percentage (\(\boldsymbol{\mathbf{V}}_{\pi,JP}\)) as follows: \[\begin{align} \boldsymbol{\mathbf{V}}_{\pi,TP}=100^2 \times \left( \boldsymbol{\mathbf{V}}_{jrr,f,P} + \boldsymbol{\mathbf{V}}_{imp,f}\right) \end{align}\] The only modification to \(\boldsymbol{\mathbf{V}}_{jrr,f}\) to make it \(\boldsymbol{\mathbf{V}}_{jrr,f,P}\) is that the sets \(\mathcal{A}\) and \(\mathcal{U}\) must be modified to regard one set of plausible values. \[\begin{align} \boldsymbol{\mathbf{V}}_{jrr,f,P}=\gamma \frac{1}{m^*} \sum_{p=1}^{m^*} \sum_{j=1}^J \left( \frac{\sum_{i\in\mathcal{A}_p} w_{ij} }{\sum_{i\in\mathcal{U}_p} w_{ij} } - \frac{\sum_{i\in\mathcal{A}_p} w_i }{\sum_{i\in\mathcal{U}_p} w_i } \right)^2 \end{align}\] where the subscript \(j\) indicates that the weights for the \(j\)th jackknife replicates are used, weights that do not contain a second subscript are the student full sample weights, and the subscript \(p\) indicates the plausible values being used. In some situations, the \(\mathcal{A}_p\) will be identical to each other across all plausible values, and the \(\mathcal{U}_p\) will be identical to each other in a broader set of situations.

The value of \(V_{imp,f}\) is given by \[\begin{align} V_{imp,f}=\frac{m+1}{m(m-1)}\sum_{p=1}^m \left( \frac{\sum_{i \in \mathcal{A}_p} w_i }{\sum_{i \in \mathcal{U}_p} w_i } - \frac{1}{m} \sum_{p'=1}^m \frac{\sum_{i \in \mathcal{A}_{p'}} w_i }{\sum_{i \in \mathcal{U}_{p'}} w_i } \right)^2 \end{align}\] so that the second sum is simply the average over all plausible values and represents the estimate itself (\(\pi\)). Thus, the expression could be rewritten slightly more compactly as follows: \[\begin{align} V_{imp,f}=\frac{m+1}{m(m-1)}\sum_{p=1}^m \left( \frac{\sum_{i \in \mathcal{A}_p} w_i }{\sum_{i \in \mathcal{U}_p} w_i } - \frac{\pi}{100} \right)^2 \end{align}\]

11.3.5 Estimation of the Standard Error of Weighted Percentages When Plausible Values Are Not Present, Using the Taylor Series Method

When membership in \(\tilde{\mathcal{A}}\) and \(\tilde{\mathcal{U}}\) does not depend on plausible values and the requested variance method is the Taylor series, estimate the variance–covariance matrix \(\boldsymbol{\mathbf{V}}_{\pi,JP}\) of the coefficients as follows: \[\begin{align} \boldsymbol{\mathbf{V}}_{\pi,T}=100^2 \times \begin{bmatrix} \boldsymbol{\mathbf{DZD}} & -\boldsymbol{\mathbf{DZD 1}} \\ -\boldsymbol{\mathbf{1}}^T \boldsymbol{\mathbf{DZD}} & \boldsymbol{\mathbf{1}}^T \boldsymbol{\mathbf{DZD 1}} \end{bmatrix} \end{align}\] where the block matrix has elements \(DZD \in \mathbb{R}^{(c-1) \times (c-1)}\); the \(c\)th row and column are then products of \(DZD\) and the vector \(\boldsymbol{\mathbf{1}} \in \mathbb{R}^{c-1}\) has a one in every element; the definition of \(\boldsymbol{\mathbf{D}}\) is the inverse of a matrix of derivatives of a score vector taken with respect to \(\boldsymbol{\mathbf{\pi}}\); and \(Z\) is a variance estimate of the proportions based on the sample survey. This calculation is based on results derived here, following Binder (1983).

The score function in question is \[\begin{align} S(\pi_h) = \left( \sum_{i=1}^{n} w_i {\rm 1\kern -2.85 pxI}({\rm unit\ }i{\rm \ is\ in\ class\ }h) \right) - \left( \sum_{i=1}^{n} \pi_h w_i \right) \end{align}\] Setting the score function to zero and solving yields the parameter estimator shown in the section “Estimation of Weighted Percentages When Plausible Values Are Present,” less the factor of 100 that converts a proportion to a percentage.

For the first \(c-1\) elements of \(\boldsymbol{\mathbf{\pi}}\), when solving this function for \(\pi_h\), the solution is the estimate of \(\pi_h\) shown earlier: \[\begin{align} \pi_h = \frac{\sum_{i=1}^{n} w_i {\rm 1\kern -2.85 pxI}({\rm unit\ }i{\rm \ is\ in\ class\ }h)}{\sum_{i=1}^{n} w_i} \end{align}\] For \(\pi_c\), the definition is that \[\begin{align} \pi_c = 1-\sum_{k=1}^{c-1} \pi_k \end{align}\] and with some algebraic rearrangement, this equation becomes \[\begin{align} = \frac{\sum_{i=1}^{n} w_i {\rm 1\kern -2.85 pxI}({\rm unit\ }i{\rm \ is\ in\ class\ }c)}{\sum_{i=1}^{n} w_i} \end{align}\]

The value of \(D\) is then the derivative of \(S(\pi)\) with respect to \(\pi\). Because this derivative must be calculated in total equilibrium (so that all the percentages add up to 100), this is done for the first \(c-1\) items, and the variance of \(\pi_c\) is separately calculated. Taking the derivative of \(S(\pi)\) and then inverting it shows that \(\boldsymbol{\mathbf{D}} \in \mathbb{R}^{(c-1) \times (c-1)}\) is a diagonal matrix with entries \(\frac{1}{\sum_{i=1}^{n} w_i}\).

Then the \(\boldsymbol{\mathbf{Z}}\) matrix accounts is given by \[\begin{align} \boldsymbol{\mathbf{Z}}=\sum_{s=1}^{N_s} \frac{n_s}{n_s-1} \sum_{j=1}^{n_s} \boldsymbol{\mathbf{U}}_{sk}^T \boldsymbol{\mathbf{U}}_{sk} \end{align}\] where \(N_s\) is the number of strata, \(n_s\) is the number of PSUs in a stratum, and \(\boldsymbol{\mathbf{U}}_{sk}\) is the vector of mean score deviates given by \[\begin{align} \boldsymbol{\mathbf{U}}_{sk} = \sum_{l=1}^{n_{sk}} \boldsymbol{\mathbf{S}}_{skl}(\boldsymbol{\mathbf{\pi}}) - \frac{1}{n_s} \sum_{j=1}^{n_s} \sum_{l=1}^{n_{sj}} \boldsymbol{\mathbf{S}}_{sjl}(\boldsymbol{\mathbf{\pi}}) \end{align}\] where \(n_{sk}\) is the number of observations in PSU \(k\) and in stratum \(s\), \(l\) is an index for individuals within the stratum and PSU, and the score vector is given by \[\begin{align} \boldsymbol{\mathbf{S}}_{skl}(\boldsymbol{\mathbf{\pi}}) = w_{skl} \boldsymbol{\mathbf{e}}_{skl} - w_{skl} \boldsymbol{\mathbf{\pi}} \end{align}\] where \(\boldsymbol{\mathbf{e}}_{skl}\) is a vector that is 0 in all entries except for a single 1 for the class that the unit is in. For example, if a respondent is a male and the possible levels are (“Female”, “Male”), then their level of \(\boldsymbol{\mathbf{e}}_{skl}\) would be \((0,1)^T\).

This gives the covariance matrix for the first \(c-1\) elements of the \(\boldsymbol{\mathbf{\pi}}\) vector. Using the usual formula for variance and covariance, it is easy to see that the variance for the final row and column is as shown at the beginning of this section.17

11.4 Estimation of Degrees of Freedom

This section and the next two subsections describe how to estimate degrees of freedom when a statistic is calculated entirely with one survey. Then a description follows of how to poll degrees of freedom when a statistic is calculated across two cohorts or samples.

One method of estimating the degrees of freedom for education survey results is to find the sum of the number of PSUs (schools) and subtract the number of strata from the number of PSUs. For NAEP surveys, this results in an estimate of 62.

However, many estimates do not use variation across all PSUs, so expect the degrees of freedom to be smaller.

11.4.1 Estimation of Degrees of Freedom, Using the Jackknife

When the jackknife estimator is used, the Welch-Satterthwaite (WS) degrees of freedom estimate (\(dof_{WS}\)) is (Satterthwaite, 1946; Welch, 1947) \[\begin{align} dof_{WS} = \frac{1}{m^*} \sum_{p=1}^{m^*} \frac{ \left[ \sum_{j=1}^{J} \left[ (A_{jp} - A_{0p}) - (B_{jp} - B_{0p}) \right]^2 \right]^2 }{ \sum_{j=1}^{J} \left[(A_{jp} - A_{0p}) - (B_{jp} - B_{0p}) \right]^4 } \end{align}\] where \(A_{jp}\) is the estimate of \(A\) using the \(j\)th jackknife replicate value and the \(p\)th plausible value, and \(A_{0p}\) is the estimate of \(A\) using the full sample weights and the \(p\)th plausible value. The same is true for the \(B\) subscripts. For a regression coefficient, \((A_{jp} - A_{0p}) - (B_{jp} - B_{0p})\) is replaced by the \(j\)th deviate from the full sample weight coefficient \(\beta_{jp} - \beta_{0p}\).

The Johnson & Rust (1992) corrected degrees of freedom (\(dof_{JR}\)) is

\[\begin{align} dof_{JR} = \left(3.16 - \frac{2.77}{\sqrt{J}} \right) dof_{WS} \end{align}\]

11.4.2 Estimation of Degrees of Freedom, Using the Taylor Series

For the Taylor series estimator, the degrees of freedom estimator also uses the WS degrees of freedom estimate (\(dof_{WS}\)). However, because the jackknife replicate estimates are not available, a different equation is used. The WS weights require an estimate of the degrees of freedom per group; when using the jackknife variance estimator, this was estimated using the jackknife replicate weights. For the Taylor series, this is estimated per stratum.

Following Binder (1983) and American Institutes for Research and Jon Cohen (n.d.), the contribution \(c_s\) to the degrees of freedom from stratum \(s\) is defined as \(\boldsymbol{\mathbf{z}}_{uj}\) from the section “Estimation of Standard Errors of Weighted Means When Plausible Values Are Not Present, Using the Taylor Series Method”: \[\begin{align} c_s = w_s \frac{n_s}{n_s-1} \sum_{u=1}^{n_s} \boldsymbol{\mathbf{z}}_{uj} \boldsymbol{\mathbf{z}}_{uj}^T \end{align}\] where \(u\) indexes the PSUs in the stratum, of which there are \(n_s\), and \(w_s\) is the stratum weight, or the sum, in that stratum, of all the unit’s full sample weights. The stratum weight is not used in the calculation of estimated degrees of freedom for the jackknife but is applied here to approximately account for the size of the stratum in the degrees of freedom calculation. Using the \(c_s\) values, the degrees of freedom is \[\begin{align} dof_{WS} = \frac{\left(\sum c_s \right)^2}{\sum c_s^2} \end{align}\] With multiple plausible values, the average of \(dof_{WS}\) across the plausible values is used.

11.4.3 Estimation of Degrees of Freedom for Statistics Pooled Across Multiple Surveys

When estimating a statistic from two surveys, a different formula is used. In this case, a statistic from each survey is combined into the final estimate; for example, a difference in means would use a mean estimate from each survey. The degrees of freedom for this pooled statistic is \[\begin{align} dof = \frac{\left(s_1^2 + s_2^2 \right)^2}{ \frac{s_1^4}{dof_1} + \frac{s_2^4}{dof_2} } \end{align}\] where \(s_1^2\) and \(dof_1\) are the squared standard error and degrees of freedom, respectively, of the statistic calculated from the first survey, and \(s_2^2\) and \(dof_2\) are the squared standard error and degrees of freedom, respectively, of the statistic calculated from the second survey. These intermediate degrees of freedom would be calculated as described in one of the previous two sections.

11.5 Estimation of Weighted Mixed Models

Analysts estimate weighted mixed models, by plausible value, using the WeMix package. The results are combined as described in this section.

Estimate the fixed effects from the WeMix results by using \[\begin{align} \boldsymbol{\mathbf{\beta}} = \frac{1}{M} \sum_{p=1}^M \boldsymbol{\mathbf{\beta}}_p \end{align}\] where \(p\) indexes the plausible values, of which there are \(M\). The same formula is used to estimate the variance of the random effects.

11.5.1 Weighted Mixed Model Variance Estimation

The standard error of the mixed effects is cluster robust and already aggregated to the highest cluster level in the model. We recommend that the highest level align with the sampling design, for example, school in a study that selects schools. Then the cluster robust variance estimator includes the sampling design, and the sampling variance can be estimated by simply averaging it across the plausible values. This is true for both the fixed effects and the variances of the random effects.

The imputation variance is then calculated using Rubin’s rule. Only the formula for the fixed effects is shown, but the same rule applies to the estimated variance of the random effects. \[\begin{align} V_{\rm imp} = \frac{M+1}{M(M-1)} \sum_{p=1}^M (\boldsymbol{\mathbf{\beta}}_p - \boldsymbol{\mathbf{\beta}}) (\boldsymbol{\mathbf{\beta}}_p - \boldsymbol{\mathbf{\beta}})^{\prime} \end{align}\] where \(V_{imp}\) is the imputation covariance matrix. The total covariance is the sum of the sampling covariance and the imputation covariance. \[\begin{align} V = V_{\rm imp} + V_{\rm smp} \end{align}\] The variance is the diagonal of the covariance matrix.

11.6 Multivariate Regression

For multivariate regression of the form \[ \boldsymbol{\mathbf{Y}}=\boldsymbol{\mathbf{XB}} + \boldsymbol{\mathbf{E}}\]

\(\boldsymbol{\mathbf{Y}}\) is a matrix of \(n\) observations on \(s\) dependent variables; \(\boldsymbol{\mathbf{X}}\) is a matrix with columns for \(k\)+1 independent variables; \(\boldsymbol{\mathbf{B}}\) is a matrix of regression coefficients, one column for each dependent variable; and \(\boldsymbol{\mathbf{E}}\) is a matrix of errors. A weighted regression is used so that the estimated coefficients (\(\boldsymbol{\mathbf{\hat{B}}}\)) minimize the trace of the weighted residual sum of squares and cross-products matrix:

\[\boldsymbol{\mathbf{\hat{B}}} = \mathrm{ArgMin}_{\boldsymbol{\mathbf{B}}}\ \ tr((\boldsymbol{\mathbf{Y}}-\boldsymbol{\mathbf{X}} \boldsymbol{\mathbf{B}})^T \boldsymbol{\mathbf{W}} (\boldsymbol{\mathbf{Y}}-\boldsymbol{\mathbf{X}} \boldsymbol{\mathbf{B}}))\]

where \(\boldsymbol{\mathbf{X}}_i\) is the \(i\)th row of \(\boldsymbol{\mathbf{X}}\), \(\boldsymbol{\mathbf{Y}}_i\) is the \(i\)th row of \(\boldsymbol{\mathbf{Y}}\), \(\boldsymbol{\mathbf{W}}\) is a diagonal matrix of the weights, and \(\mathrm{ArgMin}_{\boldsymbol{\mathbf{B}}}\) means the value of \(\boldsymbol{\mathbf{B}}\) minimizes the expression that follows it.

11.6.1 Estimation

The methods used to estimate coefficients, variance, and covariance for multivariate multiple regression are similar to those used in univariate multiple regression.

11.6.1.1 Coefficient Estimation

The coefficient estimation in mvrlm.sdf produces the same coefficient estimates as when the regressions are run separately using lm.sdf as detailed in this chapter.

11.6.1.2 Variance Estimation

The variance estimation in mvrlm.sdf produces the same standard error estimates as when the regressions are run separately using lm.sdf.

When the predicted value does not have plausible values, the variance of the coefficients is estimated according to the section “Estimation of Standard Errors of Weighted Means When Plausible Values Are Not Present, Using the Jackknife Method.”

When plausible values are present, the variance of the coefficients is estimated according to the section “Estimation of Standard Errors of Weighted Means When Plausible Values Are Present, Using the Jackknife Method.”

11.6.1.3 Residual Variance–Covariance Matrix Estimation

In addition to estimating the regression coefficients for each dependent variable, the mvrlm.sdf model also produces residual covariance estimates for the dependent variables. The residual variance–covariance matrix is a \(s \times s\) matrix for a model with \(s\) dependent variables that summarizes residuals within and between dependent variables.

The residuals for the \(i\)th dependent variable are calculated as follows:

\[ \boldsymbol{\mathbf{R_i}} = \boldsymbol{\mathbf{Y_i}}-\boldsymbol{\mathbf{X}}\boldsymbol{\mathbf{\hat{\beta}_i}} \]

where \(\boldsymbol{\mathbf{Y_i}}\) is the \(p \times n\) matrix of plausible values for the \(i\)th dependent variable, \(\boldsymbol{\mathbf{X}}\) is the \(k \times n\) matrix of independent variables, and \(\boldsymbol{\mathbf{\hat{\beta}_i}}\) is the \(p \times k\) matrix of estimated coefficients for the \(p\) plausible values and the \(k\) independent variables. When the \(i\)th dependent variable has no plausible values, \(\boldsymbol{\mathbf{R_i}}\) is simply the vector of residuals for that variable.

To calculate the residual variance–covariance matrix, summarize residuals across plausible values. For dependent variables with plausible values, the mean residual is taken across the plausible values for each observation, and the residual value is simply taken for dependent variables without plausible values. The residual vector for the \(i\)th dependent variable is calculated as follows:

\[ E_i = \frac{1}{p} \sum_{a=1}^{p} r_a\]

where \(r_a\) is the \(a\)th column of the matrix of residuals \(\boldsymbol{\mathbf{R_i}}\) for the \(i\)th dependent variable. When the \(i\)th dependent variable has no plausible values, \(\boldsymbol{\mathbf{E_i}}\) is simply the vector of residuals for that variable.

The \(s \times s\) residual variance–covariance matrix is then calculated from the residual vectors for each dependent variable as follows:

\[ \begin{bmatrix} E^T_{1} E_1 & E^T_{1} E_2 & \dots & E^T_{1} E_s \\ E^T_{2} E_1 & E^T_{2} E_2 & \dots & E^T_{2} E_s \\ \vdots & \vdots & \ddots & \vdots \\ E^T_{s} E_1 & E^T_{s} E_2 & \dots &E^T_{s} E_s \end{bmatrix} \]

11.6.1.4 Coefficient Variance–Covariance Matrix Estimation

Use the vcov method to find the coefficient variance–covariance matrix for marginal maximum likelihood models.

In the univariate case, the coefficient matrix is a \(k \times k\) symmetric matrix for a model with \(k\) regression coefficients, whereas the variance–covariance matrix for the multivariate case is a \(sk \times sk\) symmetric block matrix, where the \(k \times k\) blocks on the diagonal represent the variance–covariance values within each dependent variable (these values match those in the variance–covariance matrix from a corresponding univariate model), whereas the \(k \times k\) off-diagonal blocks represent the variance–covariance values across dependent variables.

\[ \begin{bmatrix} \boldsymbol{\mathbf{V_1}} & \boldsymbol{\mathbf{C_{1,2}}} & \dots & \boldsymbol{\mathbf{C_{1,s}}} \\ \boldsymbol{\mathbf{C_{2,1}}} & \boldsymbol{\mathbf{V_2}} & \dots & \boldsymbol{\mathbf{C_{2,s}}} \\ \vdots & \vdots & \ddots & \vdots \\ \boldsymbol{\mathbf{C_{s,1}}} & \boldsymbol{\mathbf{C_{s,2}}} & \dots & \boldsymbol{\mathbf{V_s}} \end{bmatrix} \]

The diagonal blocks \(\boldsymbol{\mathbf{V_i}}\) are \(k \times k\) matrices of the following form for the \(i\)th dependent variable:

\[ V_i = V_{jrr} + V_{imp} \]

When the variable does not have plausible values, \(V_{imp}\) is 0.

The off-diagonal blocks \(C_{a,b}\) are \(k \times k\) matrices of the following form for dependent variables \(a\) and \(b\):

\[ C_{a,b} = C_{jrr} + C_{imp} \]

When one variable does not have plausible values, \(C_{imp}\) is 0.

11.7 Wald Tests

The Wald test is a statistical test of estimated parameters in a model, with the null hypothesis being a set of parameters (\(\beta\)) is equal to some values (\(\beta_0\)).18 In the default case, where the null hypothesis value of the parameters is 0, if the test does not reject the null hypothesis, removing the variables from the model will not substantially harm the fit of that model.

The formula for the test statistic of a single parameter is as follows:

\[W=\frac{(\hat{\beta} - \beta_0)^2}{Var(\hat{\beta)}}\]

where \(W\) is the Wald test statistic, and \(Var(\hat{\beta})\) is the variance estimate of \(\hat{\beta}\).

The Wald test statistic for multiple parameters is equal to

\[ W =(\boldsymbol{\mathbf{R}}\hat{\boldsymbol{\mathbf{\beta}}} - \boldsymbol{\mathbf{r}})'(\boldsymbol{\mathbf{R}}\hat{\boldsymbol{\mathbf{V}}}\boldsymbol{\mathbf{R}}')^{-1}(\boldsymbol{\mathbf{R}}\hat{\boldsymbol{\mathbf{\beta}}} - \boldsymbol{\mathbf{r}}) \]

where \(\boldsymbol{\mathbf{R}}\) and \(\boldsymbol{\mathbf{r}}\) are a matrix and vector, respectively, used to specify a null hypothesis, and \(\hat{\boldsymbol{\mathbf{V}}}\) is the variance estimator for \(\hat{\boldsymbol{\mathbf{\beta}}}\).

The resulting test statistic can be tested against a chi-square distribution or an F-distribution. The chi-square distribution is preferable to the F-distribution when the number of degrees of freedom is large, whereas the F-test is preferable when the number of degrees of freedom is small (Korn & Graubard, 1990).

For the chi-square test, the degrees of freedom value is equal to the number of parameters being tested, and the test statistic is the unadjusted value of \(W\):

\[ W \sim \chi^2(p) \]

For the F-test, two scenarios dictate the use of two different adjustments for the test statistics, along with two different values for the denominator degrees of freedom.

For the NAEP and other international assessments in EdSurvey, when collecting data using a multistage stratified sampling design, the test statistic is adjusted based on the sampling parameters:

\[ W_{adj} = (d - p + 1) W / (pd)\]

where \(d\) is the number of PSUs minus the number of strata, and \(p\) is the number of parameters tested. The adjusted test statistic is then compared with the F-distribution with \(p\) and \((d - p - 1)\) degrees of freedom (Korn & Graubard, 1990):

\[ W_{adj} \sim F(p, d - p - 1)\]

When data are collected using a single-stage stratified sampling design (e.g., some countries in the PIAAC data), the test statistic is as follows:

\[ W_{adj} = W / p\]

The adjusted test statistic is then compared with the F-distribution with \(p\) and \(d\) degrees of freedom, where \(d\) is the residual degrees of freedom in the model and \(p\) is the number of parameters being tested:

\[ W_{adj} \sim F(p, d)\]