Questions tagged [stata]
28 questions
1
vote
0 answers
Append separate T-test results using esttab
Please, I would like to append the results from several t-tests in one table using esttab which is from the Stata Journal. I have done the following:
sysuse auto
first, test that price=turn
quietly{
ttest price=turn
preserve
expand 2, g(new)
gen…
user151731
- 89
- 1
- 6
0
votes
1 answer
! Misplaced \noalign. \bottomrule error with \estauto \estwide
I am using the following Stata code to create a table with three regression models.
esttab model_E1* using "C_1_NM.tex", replace booktabs fragment alignment(S) varwidth(25) nomtitles label nobaselevels star(* 0.10 ** 0.05 *** 0.01)…
Hugh
- 15
0
votes
0 answers
using tabout to produce multi-page latex tables
I want to produce a LaTeX frequency table with many variables using the user written tabout command in Stata. Because there are so many variables, the table needs to span multiple pages. I believe esttab has an option to produce multi-page latex…
Giovanni Colitti
- 101