Hi,
I am using Ben Jann's estout command to produce a regression table, like this:
I would like to have the reference category label split into two lines: "Car type:" and "Ref. Domestic".
I know this is possible when exporting the table to LateX. However, I would like to export the table as a CSV file.
So far, all of my attempts to do this, as well as consulting estout's help file and searching the web, were unsuccessful.
For example, the use of two hierarchies of quotation marks does not work here:
Is there any way to achieve this?
Thank you and kind regards
Sebastian
I am using Ben Jann's estout command to produce a regression table, like this:
Code:
ssc install estout sysuse auto reg price i.foreign estout, nobase refcat(1.foreign "Car type: Ref. Domestic") label
I know this is possible when exporting the table to LateX. However, I would like to export the table as a CSV file.
So far, all of my attempts to do this, as well as consulting estout's help file and searching the web, were unsuccessful.
For example, the use of two hierarchies of quotation marks does not work here:
Code:
estout, nobase refcat(1.foreign `" "Car type:""Ref. Domestic" "') label
Thank you and kind regards
Sebastian
Comment