I am using Stata 15.1 on a Linux system.
I used the "estwrite" module to save several estimates on the disk to use later for a table. One of these estimates I accidentally gave the same name as another. I meant to write
and instead wrote
I would like to do something like
but cannot as both estimates have the same name.
The obvious fix would be to just correct the original code and re-run the estimations, but these take a long time to run. Is there a way to load an estimate with estread and then change the name, so it doesn't overlap with the other? Thank you for your help.
I used the "estwrite" module to save several estimates on the disk to use later for a table. One of these estimates I accidentally gave the same name as another. I meant to write
Code:
<estimation stuff> estimates store haz3, title(haz3) estwrite haz3 using haz3 <more estimation stuff> estimates store haz6, title(haz) estwrite haz6 using haz6
Code:
<estimation stuff> estimates store haz3, title(haz3) estwrite haz3 using haz3 <more estimation stuff> estimates store haz3, title(haz3) estwrite haz3 using haz6
Code:
estread _all using haz3.sters estread _all using haz6.sters estout haz3 haz6 using estimation_table
The obvious fix would be to just correct the original code and re-run the estimations, but these take a long time to run. Is there a way to load an estimate with estread and then change the name, so it doesn't overlap with the other? Thank you for your help.
Comment