I am trying to export stata output to excel using the estout package.
Installing was no problem but when running the following code my tables are put in a horizontally manner in excel (see screenshot)
Is there any way to get these results in a vertical table?
Installing was no problem but when running the following code my tables are put in a horizontally manner in excel (see screenshot)
Is there any way to get these results in a vertical table?
Code:
forv i = 0(1)36{
qui reg MSCI_BHAR if month ==`i'
eststo reg`i'
}
esttab using example.csv, replace
Comment