@ Dennis
With 35000 variables at a time, the storage is under
20 Gb; you'd have to compute about 50 such chunks to get the entire matrix.
@Joshua Wiley
cor(my.data) # calculate the correlation matrix between all variables
(columns) of my.data
Vincent Davis | ||
I think what you have done should be fine. read.table() will return a
data frame, which cor() can handle happily. For example:
my.data <- read.table("file.csv", header = TRUE, row.names = 1,
sep=",", strip.white = TRUE) # assign your data to "my.data"
cor(my.data) # calculate the correlation matrix between all variables
(columns) of my.data
What happens if you try that?