writeClipboard works for raw or character vectors. Is there anything that can let me place matrices/data.frames into the clipboard?
I think write.table with the file = "clipboard" argument will work. Here's an example:
write.table
file = "clipboard"
write.table(mtcars, "clipboard", sep="\t", row.names=FALSE)