user2227801
user2227801

Reputation: 85

How do I get R to read high dimensional data?

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

Answers (1)

Ali
Ali

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

Related Questions