偶然看到就买了,感觉挺好的。
2012年12月底,我已经买一本了。
22 天 后
2 个月 后
# 代码清单7-7 使用by()分组计算描述性统计量
> vars  dstats  by(mtcars[vars], mtcars$am, dstats)
Error in is.data.frame(x) :
(list) object cannot be coerced to type 'double'
In addition: Warning message:
In mean.default(x) : argument is not numeric or logical: returning NA
# 代码清单7-7 使用by()分组计算描述性统计量
> vars dstats by(mtcars[vars], mtcars$am, dstats)

Error in is.data.frame(x) :
(list) object cannot be coerced to type 'double'
In addition: Warning message:
In mean.default(x) : argument is not numeric or logical: returning NA
p137 表7-1 用于创建和处理列联表的函数
Margin.table(table, margins)
其中首字母大写了,是不是刊误?
实际使用时应是小写。margin.table()
p137 表7-1 用于创建和处理列联表函数
Addmargins(table, margins)
Xtabs(formula, data)
这两个函数的首字母也是大写,应是刊误。
addmargins(table, margins)
xtabs(formula, data)
p141
代码清单7-12 三维列联表
ftable(mytable)得到的结果与书中有差异(变量顺序上的差异)
p148 偏相关 pcor()
install.packages("graph")
## Warning in install.packages :
## package ‘graph’ is not available (for R version 3.0.1)
## Warning in install.packages :
## package ‘graph’ is not available (for R version 3.0.1)
install.packages("ggm")
library(ggm)
## Loading required package: graph
## Error: package ‘graph’ could not be loaded
## In addition: Warning message:
## In library(pkg, character.only = TRUE, logical.return = TRUE, lib.loc = lib.loc) :
## there is no package called ‘graph’
p149
代码清单7-19 通过corr.test计算相关矩阵并进行显著性检验
书中提供的Probability value 与实际运行结果不一致
Probability values (Entries above the diagonal are adjusted for multiple tests.)
Population Income Illiteracy Life Exp Murder HS Grad
Population 0.00 0.59 1.00 1.0 0.10 1
Income 0.15 0.00 0.01 0.1 0.54 0
Illiteracy 0.46 0.00 0.00 0.0 0.00 0
Life Exp 0.64 0.02 0.00 0.0 0.00 0
Murder 0.01 0.11 0.00 0.0 0.00 0
HS Grad 0.50 0.00 0.00 0.0 0.00 0
2 个月 后
这本书的代码在网上无法下载,书的主页上没有内容,请译者或作者解决一下!谢谢!
找到了,谢谢!
我对统计之都越来越喜欢了!是一个活跃的学习园地!有很多高手!
1 个月 后
3 个月 后
本书中第一章,第三章出现的mtcar数据,为什么没有找到?
[未知用户] 哦,我知道了,原谅我吧,初学者