BIFIE.correl.Rd
Computes correlations and covariances
Object of class BIFIEdata
Vector of variables for which statistics should be computed
Optional grouping variable(s)
Optional vector of grouping values. This can be omitted and grouping values will be determined automatically.
Optional logical indicating whether statistical inference based on replication should be employed.
Object of class BIFIE.correl
Number of digits for rounding output
If type="cov"
, then covariances instead of
correlations are extracted.
Further arguments to be passed
A list with following entries
Data frame with correlation statistics
Data frame with covariance statistics
List of estimated correlation matrices
List of estimated covariance matrices
Extensive output with all replicated statistics
More values
stats::cov.wt
,
intsvy::timss.rho
,
intsvy::timss.rho.pv
,
Hmisc::rcorr
,
miceadds::ma.wtd.corNA
#############################################################################
# EXAMPLE 1: Imputed TIMSS dataset
#############################################################################
data(data.timss1)
data(data.timssrep)
# create BIFIE.dat object
bdat <- BIFIEsurvey::BIFIE.data( data.list=data.timss1, wgt=data.timss1[[1]]$TOTWGT,
wgtrep=data.timssrep[, -1 ] )
# Correlations splitted by gender
res1 <- BIFIEsurvey::BIFIE.correl( bdat, vars=c("lang", "books", "migrant" ),
group="female", group_values=0:1 )
summary(res1)
# Correlations splitted by gender: no statistical inference (se=FALSE)
res1a <- BIFIEsurvey::BIFIE.correl( bdat, vars=c("lang", "books", "migrant" ),
group="female", group_values=0:1, se=FALSE)
summary(res1a)