Displaying 2 results from an estimated 2 matches for "negron".
Did you mean:
negro
2011 Jan 06
8
Accessing data via url
# Can anyone suggest why this works
datafilename <- "http://personality-project.org/r/datasets/maps.mixx.epi.bfi.data"
person.data <- read.table(datafilename,header=TRUE)
# but this does not?
dd <- "https://sites.google.com/site/jrkrideau/home/general-stores/trees.txt"
treedata <- read.table(dd, header=TRUE)
2011 Feb 14
1
Return list of data frames.
Hi,
I've got a problem with a function trying to return 2 data frames in a list.
The code is as follow:
function(x) {
# code....
MyList<- list("a"=df.a,"b"=df.b)
return(MyList)
}
and I got the following message:
Error in list_to_dataframe(res, attr(.data, "split_labels")) :
Results must be all atomic, or all data frames
At first instance I thought it