79272284

Date: 2024-12-11 15:37:45
Score: 2
Natty:
Report link

Try the stargazer package in R:

library(stargazer)

stargazer(df, type = "text",
summary = F,
row names = F,
title = "[You title here]",
out = "table_output.txt") # You can create a file

For the full list of functions for stargazer, follow this link: Stargazer Package

Reasons:
  • Blacklisted phrase (1): this link
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Will