R tutorial 17 - In-built library

来源:互联网 发布:哪家淘宝可以套现 编辑:程序博客网 时间:2024/06/05 22:56

/*
在R里有一些预设的数据和库。
*/

library

library(party)
library(plotrix)
library(RColorBrewer)

 

DataSet

mtcars
VADeaths

 

Reference

R Graphics
https://www.stat.auckland.ac.nz/~paul/RGraphics/chapter1.html

 

Quick-R
http://www.statmethods.net/graphs/density.html

 

cyclismo R Tutorial
http://www.cyclismo.org/tutorial/R/types.html#tables

 

机器学习系列(4)_机器学习算法一览,应用建议与解决思路
http://blog.csdn.net/han_xiaoyang/article/details/50469334

 

机器学习算法比较
http://www.csuldw.com/2016/02/26/2016-02-26-choosing-a-machine-learning-classifier/

 

10 种机器学习算法的要点(附 Python 和 R 代码)
http://blog.jobbole.com/92021/

 

机器学习常见算法分类汇总
http://blog.sae.sina.com.cn/archives/5547

 

R语言系列—回归分析
http://www.cnblogs.com/luosha/archive/2012/06/30/2571542.html

 

Estimated Simple Regression Equation
http://www.r-tutor.com/elementary-statistics/simple-linear-regression/estimated-simple-regression-equation

 

Packages For Visualization Of Biological Data In R
https://www.biostars.org/p/18331/

 

Multivariate Data Visualization with R - Figures and Code
http://lmdvr.r-forge.r-project.org/figures/figures.html

 

Search all 11,565 CRAN, BioConductor and Github packages
https://www.rdocumentation.org/

0 0