Rev 5562 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
\name{cov.wt}\alias{cov.wt}\title{Weighted Covariance Matrices}\usage{cov.wt(x, wt = rep(1/nrow(x), nrow(x)), cor = FALSE, center = TRUE)}\description{Returns a list containing estimates of the weighted covariance matrixand the mean of the data, and optionally of the (weighted) correlationmatrix.}\arguments{\item{x}{a matrix or data frame. As usual, rows are observations andcolumns are variables.}\item{wt}{a non-negative and non-zero vector of weights for eachobservation. Its length must equal the number of rows of \code{x}.}\item{cor}{A logical indicating whether the estimated correlationweighted matrix will be returned as well.}\item{center}{Either a logical or a numeric vector specifying thecenters to be used when computing covariances. If \code{TRUE}, the(weighted) mean of each variable is used, if \code{FALSE}, zero isused. If \code{center} is numeric, its length must equal the numberof columns of \code{x}.}}\value{A list containing the following named components:\item{cov}{the estimated (weighted) covariance matrix}\item{center}{an estimate for the center (mean) of the data.}\item{n.obs}{the number of observations (rows) in \code{x}.}\item{wt}{the weights used in the estimation. Only returned if givenas an argument.}\item{cor}{the estimated correlation matrix. Only returned if\code{cor} is \code{TRUE}.}}\seealso{\code{\link{cov}} and \code{\link{var}}.}\keyword{multivariate}