When I first started using the statistical software R for statistics I had started on a Windows computer. For here the copying and pasting function is
read.table("clipboard", header=T)
The exact same function on a MAC computer is
read.table(pipe("pbpaste"), header=T)
Simple as that. I’d someone had told me this much earlier.
Leave a Reply