writeClipboard for matrices or data frames?

前端 未结 3 939
借酒劲吻你
借酒劲吻你 2021-02-13 05:35

writeClipboard works for raw or character vectors. Is there anything that can let me place matrices/data.frames into the clipboard?

3条回答
  •  小鲜肉
    小鲜肉 (楼主)
    2021-02-13 06:14

    I think write.table with the file = "clipboard" argument will work. Here's an example:

    write.table(mtcars, "clipboard", sep="\t", row.names=FALSE)
    

提交回复
热议问题