That mostly works. I just tried capture.output(), and it allowed me to transform exactly what I have in the picture into a data frame. However, I when I use write.xlsx() to create a spreadsheet from it, everything is in CSV format. In other words, the tables appear nicely in excel, but each row in the table is mushed into a single cell. Looks like this for example:
[1] Model 1 Model X^2 df p
[2] 1 - 2 410 4 <.001
What I was really hoping to do was to be able to write this to an excel sheet and having it as a perfect table there I could paste into word, with next to no effort on my end to then make it APA format. As is though, I'd have to re-write every number again, just the same as if I did by hand without capture.output*() Any ideas on how to get it printed out like a table?