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