I am looking to export the output of the post estimation command
after having run the csdid command.
Is there a command equivalent to
but for estat pretrend? estore does not work for estat pretrend.
Similarly, estout does produce a result either:
produces the result of the initial estimation, not the result of the pretrend test.
Code:
estat pretrend
Is there a command equivalent to
Code:
estat event, estore(eq1) esttab eq1
Similarly, estout does produce a result either:
Code:
ssc install csdid use "https://friosavila.github.io/playingwithstata/drdid/mpdta.dta", clear csdid lemp lpop , ivar(countyreal) time(year) gvar(first_treat) method(dripw) estat pretrend eststo test esttab test
Comment