Notice: On April 23, 2014, Statalist moved from an email list to a forum, based at statalist.org.
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: st: Calculation of covariance matrix for unbalanced sample?
From
Stas Kolenikov <[email protected]>
To
[email protected]
Subject
Re: st: Calculation of covariance matrix for unbalanced sample?
Date
Thu, 3 Nov 2011 07:46:54 -0400
I don't think there's any. I vaguely remember a discussion some time
back on the list about this. Here's the basic outline from scratch:
program define pwcovmat, rclasssyntax varlistunab vars :
`varlist'local p : word count `vars'tempname Covmatrix `Cov' =
J(`p',`p',.)matrix rownames `Cov' = `vars'matrix colnames `Cov' =
`vars'forvalues i=1/`p' { forvalues j=`i'/`p' { local x : word `i'
of `vars' local y : word `j' of `vars' quietly corr `x' `y', cov
matrix `Cov'[`i',`j'] = r(C) matrix `Cov'[`j',`i'] = r(C)
}}return matrix Cov = `Cov'end // of pwcovmat
sysuse auto
corr weight price mpg, cov
corr weight price mpg rep, cov
pwcovmat weight price mpg rep
matrix list r(Cov)
On Thu, Nov 3, 2011 at 6:00 AM, <[email protected]> wrote:
> A colleague has data on a relatively large number of variables. His
> sample is unbalanced in the sense that each variable has some missing
> values. He wishes to calculate the covariance matrix for his data but
> without the listwise deletion of cases that is imposed by -correlation,
> covariance- or -matrix accum-.
>
> My first thought was that he could use -pwcorr- and loop over his
> variables, and build up his matrix from the saved results. But I thought
> there must be an easier or more straightforward way -- but Googling and
> -findit- have not suggested any. I guess there is a relatively easy
> Mata solution, but I am currently unfamiliar with that route.
>
> Suggestions using Stata or Mata please
>
> Stephen
> ------------------
> Professor Stephen P. Jenkins <[email protected]>
> Department of Social Policy and STICERD
> London School of Economics and Political Science
> Houghton Street, London WC2A 2AE, UK
> Tel: +44(0)20 7955 6527
> Changing Fortunes: Income Mobility and Poverty Dynamics in Britain, OUP
> 2011, http://ukcatalogue.oup.com/product/9780199226436.do
> Survival Analysis Using Stata:
> http://www.iser.essex.ac.uk/survival-analysis
> Downloadable papers and software: http://ideas.repec.org/e/pje7.html
>
>
> Please access the attached hyperlink for an important electronic communications disclaimer: http://lse.ac.uk/emailDisclaimer
>
> *
> * For searches and help try:
> * http://www.stata.com/help.cgi?search
> * http://www.stata.com/support/statalist/faq
> * http://www.ats.ucla.edu/stat/stata/
>
--
Stas Kolenikov, also found at http://stas.kolenikov.name
Small print: I use this email account for mailing lists only.
*
* For searches and help try:
* http://www.stata.com/help.cgi?search
* http://www.stata.com/support/statalist/faq
* http://www.ats.ucla.edu/stat/stata/