I've used R to run some logit regressions - testing the characteristics of investment firms and whether or not any predict sustainable behaviours.
In my paper I've copied acorss the output from R, however, I've had feedback saying I should try to format the output tables in a more classic academic way.
Does anyone have advice on how best to do this, or know of any tutorials which help with this kind of thing?
Many thanks, Rory




You may use kable() function from kableExtra package. You can then copy and paste to use it. Remember to supply the outputin tidy form. It is done using the tidy() function from broom package.
You will get a table like this:
To know more about it run ?kableExtra::kable in console. There are more formatting options, e.g., latex, html, pipe (Pandoc's pipe tables), simple (Pandoc's simple tables), and rest.
You can learn more from these places: