Hello,
I have 3 different research questions, and I use regress, logit, and fracreg respectively. After I estimated my models, I also performed bootstrap resampling as a robustness check. I used the command below:
. set seed 3957574 . bootstrap _b[foreign], size(37) reps(2000) dots: regress mpg weight foreign
This worked well with regress command. However, when I run it with fracreg, it takes too long. It has been 3 days, but the output is not yet estimated.
. bootstrap _b[X1], size(1404090) reps(1000) dots: fracreg logit Y X1 ....
(running fracreg on estimation sample)
Bootstrap replications (1,000)
----+--- 1 ---+--- 2 ---+--- 3 ---+--- 4 ---+--- 5
.................................................. 50
.................................................. 100
.................................................. 150
.................................................. 200
.................................................. 250
.................................................. 300
.................................................. 350
.................................................. 400
.................................................. 450
.................................................. 500
............................
Meanwhile, when I estimated with logit, it provides no output.
(running logit on estimation sample)
Bootstrap replications (100)
----+--- 1 ---+--- 2 ---+--- 3 ---+--- 4 ---+--- 5
.xxxx....x--Break--
I didnt press Break, but same continues to happen even when I re-estimate it .
Can someone advise where I am going wrong? Is there a different command when performing bootstrapping procedure for logit & fracreg models?
Thank you
I have 3 different research questions, and I use regress, logit, and fracreg respectively. After I estimated my models, I also performed bootstrap resampling as a robustness check. I used the command below:
. set seed 3957574 . bootstrap _b[foreign], size(37) reps(2000) dots: regress mpg weight foreign
This worked well with regress command. However, when I run it with fracreg, it takes too long. It has been 3 days, but the output is not yet estimated.
. bootstrap _b[X1], size(1404090) reps(1000) dots: fracreg logit Y X1 ....
(running fracreg on estimation sample)
Bootstrap replications (1,000)
----+--- 1 ---+--- 2 ---+--- 3 ---+--- 4 ---+--- 5
.................................................. 50
.................................................. 100
.................................................. 150
.................................................. 200
.................................................. 250
.................................................. 300
.................................................. 350
.................................................. 400
.................................................. 450
.................................................. 500
............................
Meanwhile, when I estimated with logit, it provides no output.
(running logit on estimation sample)
Bootstrap replications (100)
----+--- 1 ---+--- 2 ---+--- 3 ---+--- 4 ---+--- 5
.xxxx....x--Break--
I didnt press Break, but same continues to happen even when I re-estimate it .
Can someone advise where I am going wrong? Is there a different command when performing bootstrapping procedure for logit & fracreg models?
Thank you
Comment