powered by
Creates a list of summary statistics to pass to mimic.
mimic
set_stats(d = 2, means = 0, variances = 1, correlation = diag(2))
A list containing the following components.
means a d-vector of sample means.
means
d
variances a d-vector sample variances.
variances
correlation a d by d correlation matrix.
correlation
An integer that is no smaller than 2.
A numeric vector of sample means.
A numeric vector of positive sample variances.
A numeric correlation matrix. None of the off-diagonal entries in correlation are allowed to be equal to 1 in absolute value.
The vectors means and variances are recycled using rep_len to have length d.
rep_len
# Uncorrelated with zero means and unit variances set_stats() # Sample correlation = 0.9 set_stats(correlation = matrix(c(1, 0.9, 0.9, 1), 2, 2))
Run the code above in your browser using DataLab