目前想学习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)是能成功的
烦请各位解惑
谢谢