writeClipboard for matrices or data frames?

前端 未结 3 937
借酒劲吻你
借酒劲吻你 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:20

    The above is mostly a wrong answer if your table is a little bigger.

    Warning message:
    In .External2(C_writetable, x, file, nrow(x), p, rnames, sep, eol,  :
      clipboard buffer is full and output lost
    

    The hack fix is this:

    writeClipboard(knitr::kable(d))
    

提交回复
热议问题