StatsReporting / stargazer

Python implementation of the R stargazer multiple regression model creation tool
Other
196 stars 48 forks source link

Allow to set custom spacing between coefficients #66

Closed toobaz closed 3 years ago

toobaz commented 3 years ago

From #65 .

I don't like the idea of inserting empty lines like R stargazer does, but I do think it should be easy to take an optional argument, e.g. row_space=.3 which results in

\\[.3cm] after the standard error lines.

toobaz commented 3 years ago

@nikchha should be fixed: numbers are interpreted in "em" by default but one can also be explicit in measurement unit, as in

table.cov_spacing = '3cm'

nikchha commented 3 years ago

Thank you for your work! That's great