I have a question which is exactly similar to this question.
As part of my work, I have to copy output from the R Studio Console to an excel worksheet in order to make e
From my experience there is no convenient way, I use two methods:
For small data frames, use RStudio's View(data.frame)
function, if you copy only data without headers it works fine, but if you want to copy with headers then you have to paste it into notepad first to add at least one character to the top left empty cell.
For large data frames, use write.csv
or write.xls
(from package WriteXLS)