
R 经验
牛哥骑驴看马
这个作者很懒,什么都没留下…
展开
-
GARCH(一)
原来所研究模型本质上都是均值模型,因为假设了方差齐性; 此前,都是研究ARIMA模型,原创 2014-09-12 08:59:58 · 875 阅读 · 0 评论 -
Install EBImage
# in Shell: ~: sudo apt-get install libjpeg-dev ~: sudo apt-get install libtiff-dev ~: sudo apt-get install libpng-dev原创 2014-11-24 17:20:15 · 861 阅读 · 0 评论 -
R语言常用函数参考
基本 一、数据管理 vector:向量 numeric:数值型向量 logical:逻辑型向量 character;字符型向量 list:列表 data.frame:数据框 c:连接为向量或列表 length:求长度 subset:求子集 seq,from:to,sequence:等差序列 rep:重复 NA:缺失值 NULL:空对象 sort,order,unique,rev:排序 un转载 2014-11-18 17:59:49 · 965 阅读 · 0 评论 -
R 历史版本的安装
2. R在Ubuntu中安装 本文基于的Linux是Ubuntu 12.04.2 LTS 64bit的系统,安装R语言软件包可以通过apt-get实现。 在Linux Ubuntu中安装R语言转载 2014-09-21 20:22:26 · 1823 阅读 · 1 评论 -
Python vs R
isinstance is,原创 2014-10-23 09:00:11 · 509 阅读 · 0 评论 -
R语言面向对象S4
参考: http://blog.fens.me/r-object-oriented-intro/转载 2014-09-25 17:00:54 · 900 阅读 · 0 评论 -
R中面向对象S3
参考:http://cos.name/2009/07/studying-notes-on-oop-in-r/ http://blog.fens.me/r-class-s3/ S3方法 在R语言中,基于S3对象的面向对象编程,是一种基于泛型函数的实现方式。泛型函数是一种特殊的函数, 根据传入对象的类型决定调用哪个具体的方法。基于S3对象实现的面向对象编程,不原创 2014-09-25 16:45:15 · 534 阅读 · 0 评论 -
Functions in R
“To understand computations in R, two slogans are helpful: Everything that exists is an object.Everything that happens is a function call." — John Chambers原创 2014-09-26 10:12:52 · 881 阅读 · 1 评论 -
Ubuntu 12.04 下安装 R-3.1
下载包原创 2014-09-02 11:13:03 · 488 阅读 · 0 评论 -
R画闪点图
base::方法 plot(x,y); abline(lm(y~x)); car::方法 library(car); scatterplot(y~x|z,data=...); ggplot::方法 library(ggplot2) qplot(x,y,data=...,geom=c("point","smooth"),method="lm",formula=y~x,...原创 2014-09-24 11:17:21 · 513 阅读 · 0 评论 -
R与Matlab
R: do.call M: funcall原创 2014-09-24 09:35:51 · 586 阅读 · 0 评论 -
install bioconductor packages
source("http://bioconductor.org/biocLite.R") biocLite()原创 2014-11-24 16:44:32 · 1011 阅读 · 0 评论