Skip to content
Prev 324339 / 398503 Next

Download data

On 05/29/2013 02:02 AM, jcrosbie wrote:
Hi jcrosbie,
The simplest way seems to be to highlight the desired spreadsheet (less 
the title row), copy (Ctrl-C) and paste (Ctrl-V) it into a text editor 
and save it (e.g. ss1.tab). This produces a TAB delimited file that can 
be read into a data frame in R with:

ss1<-read.table("ss1.tab")

Jim