Coursera - R编程笔记

2015-06-06  本文已影响290人  cdpath

写在前面的话:
本文是Coursera - R Programming的笔记
涉及到书籍链接均使用豆瓣
发现typo请指出 :)

第一周

R的前身S

  1. R是S的方言
  2. S Initial Version,1976年,最初是Fortran的统计分析库,作者John Chambers
  3. S Version 3,1988年,用C语言实现,Statistical Models 《白皮书》,引入统计建模的功能
  4. S Version 4,1998年,最新版 之后基本没有改动,Programming with Data 《绿皮书》
  5. 所有权变更:Bell实验室 +---> Insightful �+---> TIBCO
  6. 荣誉:1998年 Association for Computing Machinery's Software System Award

S哲学

John Chambers在Stages in the Evolution of S一书中写到:

we wanted users to be able to begin in an interactive environment, where they did not consciously think of themselves as programming. Then as their needs became clearer and their sophistication increased, they should be able to slide gradually into programming, when the language and system aspects would become more important.

从S到R

  1. 1991年诞生,作者Ross lhakaRobert Gentleman
  2. 1993年发布
  3. 1995年成为使用GNU GPL的自由软件
  4. 1996年组建公共邮件列表:R-help 和 R-devel
  5. 1997年R核心开发团队成立,掌管R的源码
  6. 2000年,R Version 1.00 发布
  7. 2013年,R Version 3.0.2 发布

R的特性

自由软件

四大基本原则
http://www.fsf.org

R的缺点

  1. 基于40年前的技术
  2. 对动态和三维图像的支持较差(最近已有改进)
  3. 功能与客户需求和基本用户的分布有关(若是缺少某个功能,你就得自己去写)
  4. R对象必须储存在物理内存中(对象大小不能超过内存的大小,不然装不进去,在大数据时代这是一个短板)
  5. R不是万能的

R系统设计

从概念划分,R系统分为两部分:

  1. base:从CRAN[1]下载的基本系统
  2. Everything else

资料

CRAN

主要课本

其他参考书


  1. Comprehensive R Archive Network

上一篇 下一篇

猜你喜欢

热点阅读