get_SigmaS | R Documentation |
Using the same the notation of \insertCiteBB2024;textualMCARtest, computes
the sequence of patterns \mathbb{S}
, means \mu_\mathbb{S}
, variances
\sigma^2_\mathbb{S}
, and correlation matrices \Sigma_\mathbb{S}
for a dataset with missing values.
get_SigmaS(X)
X |
The dataset with incomplete data. |
patterns
The sequence of patterns \mathbb{S}
.
n_pattern
The cardinality of \mathbb{S}
.
data_pattern
A vector where the data are grouped according to \mathbb{S}
.
muS
The sequence of means.
C_S
The sequence of covariance matrices.
sigma_squared_S
The sequence of variances.
SigmaS
The sequence of correlation matrices.
ambient_dimension
The dimension d
of the data.
BB2024MCARtest
library(copula)
library(missMethods)
n = 1000
cp = claytonCopula(param = c(1), dim = 5)
P = mvdc(copula = cp, margins = c("exp", "exp", "exp", "exp", "exp"),
paramMargins = list(list(1), list(1), list(1), list(1), list(1)))
X = rMvdc(n, P)
X = delete_MCAR(X, 0.1, c(1,4,5))
get_SigmaS(X)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.