blog:r_read_data_from_clipboard_for_windows_and_mac
Table of Contents
R read data from clipboard for Windows and Mac
On Mac
On Mac Os X, the function pipe can be used to read and copy to clipboard. I often copy data from excel to clipboard and then read them into R. Specifically, the following code can be used.
dset <- read.table(pipe("pbpaste"), sep="\t")
On Windows
On Windows OS, the following can be used
x <- read.table(file = "clipboard", sep = "\t")
You could leave a comment if you were logged in.
blog/r_read_data_from_clipboard_for_windows_and_mac.txt · Last modified: 2016/01/24 09:48 by 127.0.0.1