• R语言
  • Modern Applied Statistics With S (Fourth edition)

下载地址:Modern Applied Statistics With S



Modern Applied

Statistics with S

Fourth edition

by

W. N. Venables and B. D. Ripley

Springer (mid 2002)

Final 15 March 2002




感谢站友eshanzi以及pptt提供资料!
看来要么大家没看帖啊,这么好的东西竟然没人下载。



我接着把一份学习笔记发上来:



下载:Modern Applied Statistics with S-Plus (notes)>>>



Modern Applied Statistics with S-Plus

Benny Yakir

Abstract



****************************************************

These notes are based on the book Modern Applied Statistics with

S-Plus by W.N. Venables and B.D. Ripley. No originality is claimed.

****************************************************



Contents

1 Starting R 4

1.1 Installing R . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4

1.2 Basic R Commands . . . . . . . . . . . . . . . . . . . . . . . 4

1.3 An Example of an R Session . . . . . . . . . . . . . . . . . . 4

2 Objects in R 6

2.1 Vectors and matrices . . . . . . . . . . . . . . . . . . . . . . . 6

2.2 Lists . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 7

2.3 Factors . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8

2.4 Data frames . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8

2.5 Homework . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8

3 Functions 10

3.1 Built-in functions . . . . . . . . . . . . . . . . . . . . . . . . . 10

3.2 Writing functions . . . . . . . . . . . . . . . . . . . . . . . . . 11

3.3 Plotting functions . . . . . . . . . . . . . . . . . . . . . . . . 13

3.4 Home Work . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13

4 Linear models 14

4.1 A simple regression example . . . . . . . . . . . . . . . . . . 14

4.2 Model formulae . . . . . . . . . . . . . . . . . . . . . . . . . . 14

4.3 Diagnostics . . . . . . . . . . . . . . . . . . . . . . . . . . . . 16

4.4 Model selection . . . . . . . . . . . . . . . . . . . . . . . . . . 17

4.5 Homework . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 18

5 Generalized Linear Models (GLM) 19

5.1 The basic model . . . . . . . . . . . . . . . . . . . . . . . . . 19

5.2 Analysis of deviance . . . . . . . . . . . . . . . . . . . . . . . 20

5.3 Fitting the model . . . . . . . . . . . . . . . . . . . . . . . . . 21

5.4 Generic functions and method functions . . . . . . . . . . . . 21

5.5 A small Binomial example . . . . . . . . . . . . . . . . . . . . 21

5.6 Fitting other families . . . . . . . . . . . . . . . . . . . . . . . 23

5.7 Frames . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 23

5.8 A Poisson example . . . . . . . . . . . . . . . . . . . . . . . . 23

5.9 Home Work . . . . . . . . . . . . . . . . . . . . . . . . . . . . 24

6 Robust methods 26

6.1 Introduction . . . . . . . . . . . . . . . . . . . . . . . . . . . . 26

6.2 The lqs function for resistant regression . . . . . . . . . . . 26

6.3 Some examples . . . . . . . . . . . . . . . . . . . . . . . . . . 28

6.4 Home work . . . . . . . . . . . . . . . . . . . . . . . . . . . . 31

7 Non-linear Regression 33

7.1 The basic model . . . . . . . . . . . . . . . . . . . . . . . . . 33

7.2 A small example . . . . . . . . . . . . . . . . . . . . . . . . . 33

7.3 Attributes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 35

7.4 Prediction . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 35

7.5 Profiles . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 38

7.6 Home work . . . . . . . . . . . . . . . . . . . . . . . . . . . . 39

8 Non-parametric and semi-parametric Regression 40

8.1 Non-parametric smoothing . . . . . . . . . . . . . . . . . . . 40

8.2 The projection-pursuit model . . . . . . . . . . . . . . . . . . 41

8.3 A simulated example of PP-regression . . . . . . . . . . . . . 42

8.4 Home work . . . . . . . . . . . . . . . . . . . . . . . . . . . . 44

9 Tree-based models 45

9.1 An example of a regression tree . . . . . . . . . . . . . . . . 46

9.2 An example of a classification tree . . . . . . . . . . . . . . . 49

9.3 Homework . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 52

10 Multivariate analysis 53

10.1 Multivariate data . . . . . . . . . . . . . . . . . . . . . . . . . 53

10.2 Graphical methods . . . . . . . . . . . . . . . . . . . . . . . . 54

10.3 Principal components analysis . . . . . . . . . . . . . . . . . 54

10.4 cluster analysis . . . . . . . . . . . . . . . . . . . . . . . . . . 55

10.5 Home work . . . . . . . . . . . . . . . . . . . . . . . . . . . . 57

10.6 Classication . . . . . . . . . . . . . . . . . . . . . . . . . . . 58

10.7 Multivariate linear models . . . . . . . . . . . . . . . . . . . . 64

10.8 Canonical correlations . . . . . . . . . . . . . . . . . . . . . . 65

10.9 Project 3 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 66
1 个月 后
谢谢楼主,确实是好书,正需要!!!
这两本的确都是好书,大家下后好好学吧,提高了好高质量的交流啊
这简直是s language的圣经阿~
多谢楼主,我刚接触S,非常幸运找到了这里,以后还请大家多帮助。谢谢
呵呵,真好, 这里资料多而全的
5 天 后
[quote]引用第5楼cran2006-11-04 14:35发表的“”:

这简直是s language的圣经阿~[/quote]



是啊,Modern Applied Statistics With S 是S language圣经的下册,它的上册应该是

W.N . Venables

B.D. Ripley

S Programming



目前下册正交与管理员处理之中。
10 天 后
下一个先,不过我想接下来应该先把以前下的好东东好好的去看一看了.感觉挺难为情的,下了许多东西,就是看得比较少.
[quote]引用第11楼zhuyirui2006-11-21 13:32发表的“”:

想接下来应该先把以前下的好东东好好的去看一看了.感觉挺难为情的,下了许多东西,就是看得比较少.[/quote]



同感,真想好好潜水一阶段,但一打开电脑,就想来论坛看看大家

这本书的参考价值还是挺大的。我一直在用,这也是我们学校图书馆里唯一一本关于S语言的书。。。。
已经下了,再来说声谢谢!
资料缺失丰富,可是哪有这么多时间来看呢?
11 天 后
谢谢楼主,确实是好书,谢谢!
1 个月 后
如获至宝啊,谢谢谢老师!!