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: error 506 (matrix not positive definite) when bootstrapping eigenvalue after one-way manova
From
Sergiy Radyakin <[email protected]>
To
[email protected]
Subject
Re: st: error 506 (matrix not positive definite) when bootstrapping eigenvalue after one-way manova
Date
Tue, 14 Jun 2011 10:50:32 -0400
Hello Carlo,
the code you posted breaks down sooner with the message:
. svmat double c, name(eigen_m)
matrix c not found
r(111);
What is in matrix C?
Best, Sergiy Radyakin
On Tue, Jun 14, 2011 at 9:19 AM, Carlo Lazzaro <[email protected]> wrote:
> Dear Statalisters,
> before bootstrapping eigenvalue after one-way manova using auto.dta and
> Stata 9.2/SE, I imposed the equality of the means in price and mpg for both
> foreign and domestic cars.
> When I invoked bootstrap, error message r(506) related to model term foreign
> appeared.
> Can anybody please give me some hint about the reason of this drawback and
> how to work it around?
> Thanks a lot for your kindness and for your time.
> Kindest Regards,
> Carlo
> ------------code begins-----------------------
> use "C:\Programmi\Stata9\ado\base\a\auto.dta"
> manova price mpg=foreign
> svmat double c, name(eigen_m)
> scalar sctr=trace(c)
> by foreign, sort: sum price
> sum price if foreign==0, meanonly
> replace price=price-r(mean)+6384.682 if foreign==0
> sum price if foreign==1, meanonly
> replace price=price-r(mean)+6384.682 if foreign==1
> by foreign, sort: sum mpg
> sum mpg if foreign==0, meanonly
> replace mpg= mpg-r(mean)+24.77273 if foreign==0
> sum mpg if foreign==1, meanonly
> replace mpg= mpg-r(mean)+24.77273 if foreign==1
> bootstrap trace(c), reps(10000) nodots strata(foreign) bca seed(12345) :
> manova price mpg=foreign
> failure for model term foreign
> an error occurred when bootstrap executed manova
> r(506);
> ------------code ends-----------------------
>
>
> *
> * 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/
>
*
* 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/