目前想學習R
剛試用卻遇到困難
自己做了一個excel如下
檔名為test
age
52
46
20
25
26
60
35
25
36
68
42
匯入到Rstudio的語法為:
> library(readxl)
> test <- read_excel("~/R/test.xlsx", col_types = c("numeric"))
但我輸入平均值 mean(test)
卻出現這樣的訊息 Warning message:
In mean.default(test) : argument is not numeric or logical: returning NA
再輸入標準差 sd(test)
出現Error in is.data.frame(x) :
(list) object cannot be coerced to type 'double'
平均值的部分我有使用colmeans有成功,
但我疑問是若使用scan()自行輸入資料跑mean(test)和sd(test)是能成功的
煩請各位解惑
謝謝