Reputation: 85
I need to use high dimensional data in R. I saw this SE community wiki Free data set for very high dimensional classification.
I wanted to use the Dorothea data set in R, but I could not.
Any help?
Upvotes: 0
Views: 422
Reputation: 9850
Try this:
x <- read.csv("YOUR_ADDRESS/dorothea_test.data", header=F, sep=" ")
dim(x)
# [1] 807 2887
Actually the size of this data is not very big for R, you can easily process it with a normal PC or laptop.
Upvotes: 1