1. 程式人生 > >R語言錯誤資訊及相關解決方法

R語言錯誤資訊及相關解決方法

原創:黃小仙

Error: object of type ‘closure’ is not subsettable 物件大於被取子集,看看物件是不是空的,有時候檔案路徑或者名稱不對,資料並沒有匯入成功

Remove duplicates before running TSNE 有重複的資料行,Rtsne package裡有個引數 check_duplicates = FALSE

Error in colMeans(x, na.rm = TRUE) : ‘x’ must be numeric 匯入的data 裡有不是numeric 的列,有可能是factor, 用 sapply (x, class)可以檢視

Error: (list) object cannot be coerced to type ‘double’ 如果用as.matrix不能把型別是factor的列轉化為numeric, 可以用lapply(x,as.numeric)可以實現把factor 型別轉化為numeric