writeClipboard works for raw or character vectors. Is there anything that can let me place matrices/data.frames into the clipboard?
A nice OS independent solution is:
library(clipr) clipr::write_clip(mtcars)
But may suffer from size limitations as well.