2014-01-09 73 views
0

我想知道是否可以讀取data.frame(下面的「a」),而不將「因素」指定爲屬性。我希望字符/字符串作爲因子和數字作爲數字(而不必調用每一列)。轉換爲char後data.frame中的列屬性。矩陣(轉置)。

x <- matrix(letters[1:9],3) 
x<-rbind(x,c(0,2,2)) 
rownames(x) <- c('c1','c2','c3','c4') 
y <- data.frame(x) 
z <- t(y) 
a <- data.frame(z)  
str(a) 

回答

0

添加條件stringsAsFactors=FALSE每次你創建一個data.frame:

y <- data.frame(x,stringsAsFactors=FALSE) 

a <- data.frame(z,stringsAsFactors=FALSE) 

變化一回數字的4列:

> a[,4]=as.numeric(a[,4]) 

> a 
    c1 c2 c3 c4 
X1 a b c 0 
X2 d e f 2 
X3 g h i 2 

> str(a) 
'data.frame': 3 obs. of 4 variables: 
$ c1: chr "a" "d" "g" 
$ c2: chr "b" "e" "h" 
$ c3: chr "c" "f" "i" 
$ c4: num 0 2 2 
+0

是否有相當於參數「stringsAsfactors 「數字?我有很多不同長度的數據集,謝謝。 – user3166363