我已經導入測試文件,並試圖使直方圖轉換串數字
pichman <- read.csv(file="picman.txt", header=TRUE, sep="/t")
hist <- as.numeric(pichman$WS)
然而,我在數據集中的值獲得不同的號碼。原本我以爲,這是因爲我有文字,所以我刪除的文本:
table(pichman$WS)
ws <- pichman$WS[pichman$WS!="Down" & pichman$WS!="NoData"]
不過,我仍然得到非常高的數字沒有任何人有一個想法?
另請參見http://stackoverflow.com/questions/4798343/和http://stackoverflow.com/questions/3418128 – Aaron 2011-02-08 15:15:39