I am using stargazer
package to produce (regression output) tables. Everything working miracles until I start editing the notes. First: line breaks are hard, but Bryan suggests a manual solution that is not elegant, but works. Second I need to make it start from the very left of the table.
Here is an example of the notes I am trying to produce from within R
.
Produced by changing the original LaTeX
code from:
\textit{Note:} & \multicolumn{4}{l}{Logistic regression. Dependent variable: an indicator varible ... AND Some very long and interesting comment.} \\
To
\multicolumn{5}{l} {\parbox[t]{11cm}{ \textit{Notes:} Logistic regression. Dependent variable: an indicator varible ... AND Some very long and interesting comment.}} \\
Editing by hand is time-consuming and error-prone. So I am looking for a way to solve this from R
, where I am currently using the following:
stargazer([...],
style = "qje", notes.append = FALSE, notes.align = "l",
notes = "\\parbox[t]{7cm}{Logistic regression. Dependent variable: an indicator
varible ... AND Some very long and interesting comment.}")