Re: [R] Question about user define function

2010-06-16 Thread Allan Engelhardt
On 15/06/10 21:39, GL wrote: Have the following function that is called by the statement below. Trying to return the two dataframes, but instead get one large list including both tables. ReadInputDataFrames<- function() { dbs.this= read.delim("this.txt", header = TRUE, sep = "\t", quote="\"

Re: [R] Question about user define function

2010-06-15 Thread David Winsemius
On Jun 15, 2010, at 4:39 PM, GL wrote: Have the following function that is called by the statement below. Trying to return the two dataframes, but instead get one large list including both tables. ReadInputDataFrames <- function() { dbs.this= read.delim("this.txt", header = TRUE, sep =

[R] Question about user define function

2010-06-15 Thread GL
Have the following function that is called by the statement below. Trying to return the two dataframes, but instead get one large list including both tables. ReadInputDataFrames <- function() { dbs.this= read.delim("this.txt", header = TRUE, sep = "\t", quote="\"", dec=".") dbs.that= read.