Bookmark and Share

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: Bootstrapping: Comparing the difference between means


From   "Fleming, Fiona M" <[email protected]>
To   "[email protected]" <[email protected]>
Subject   RE: st: Bootstrapping: Comparing the difference between means
Date   Wed, 3 Apr 2013 19:28:52 +0000

Nick,

Many thanks for your quick and useful response, makes me wish I had sent out the request for advice sooner. I didn't mention starting with on-line help and manual entry but that is where I did start. I couldn't figure out, in the more simple manner that you have demonstrated, how to do the bootstrap for the difference in means, so went in search for a more complicated way....

Thanks again for the advice.

Fiona

-----Original Message-----
From: [email protected] [mailto:[email protected]] On Behalf Of Nick Cox
Sent: 03 April 2013 17:42
To: [email protected]
Subject: Re: st: Bootstrapping: Comparing the difference between means

I don't see that you need to write a program here.

sysuse auto
bootstrap (r(mu_1) - r(mu_2)), reps(10000) nowarn nodots :  ttest mpg,
by(foreign)

What are you doing wrong?

You don't mention starting with the on-line help and manual entry. The very first example shows that you can calculate the results of expressions containing different saved results on the fly with the
-bootstrap- command.

... if (del==1) + (del==2) should give the right result, but it's better style to use logical operators.

simulate diffa_1=r(mu_1) diffa_2 = (r(mu_2), reps(100) : the parentheses aren't balanced.

Nick

On 3 April 2013 17:22, Fleming, Fiona M <[email protected]> wrote:

> I am hoping someone can help! I have been trying to work out, all day, how I can perform a bootstrap on the mean difference of two samples. I have scoured the Statalist, FAQ etc to get ideas and have recently been  trying to replicate the programming and commands illustrated in Example 2 on http://statistics.ats.ucla.edu/stat/stata/faq/ownboot.htm  with my own data set i.e.:
>
> // step 1
> ttest dcp  if (del==1) + (del==2), by(del) return list matrix mu = 
> (r(mu_1), r(mu_2)) matrix list mu
>
> // step 2
> capture program drop mydiffa
> program define mydiffa, rclass
> preserve
> bsample
> ttest dcp if (del==1) + (del==2), by(del) estat mu return scalar 
> diffa_1 = r(mu_1) return scalar diffa_2 = r(mu_2) restore end
>
> // step 3
> simulate diffa_1=r(mu_1) diffa_2 = (r(mu_2), reps(100) seed(12345): 
> mydiffa bstat, stat (mu) n(200) estat bootstrap, all
>
> after running this 'simulate' I get the following error and cannot 
> proceed- '' found where ':' expected r(198);
>
>
> Please could you offer any advice as to what I am doing wrong?
>
> In addition, what I have written above will only give me the bootstrap SE and CI for each of the means and not the difference of the means, if you have any further advice on how I might run that I would be extremely grateful.

*
*   For searches and help try:
*   http://www.stata.com/help.cgi?search
*   http://www.stata.com/support/faqs/resources/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/faqs/resources/statalist-faq/
*   http://www.ats.ucla.edu/stat/stata/


© Copyright 1996–2018 StataCorp LLC   |   Terms of use   |   Privacy   |   Contact us   |   Site index