Difference between revisions of "R"

From Simson Garfinkel
Jump to navigationJump to search
(Created page with "R Cheats: [https://stat.ethz.ch/R-manual/ Documentation] =Basic Commands= * getwd() * setwd(dir)")
 
m
 
(2 intermediate revisions by the same user not shown)
Line 6: Line 6:
* getwd()
* getwd()
* setwd(dir)
* setwd(dir)
* source(file)
=Package Management=
[http://www.dummies.com/how-to/content/how-to-install-and-load-cran-packages-in-r.html Dummies]
* install.packages("packagename")
=Tutorials=
;General Tutorials
* http://www.statmethods.net/graphs/ — Overviews of R and statistical methods
* http://www.cyclismo.org/tutorial/R/ — An excellent complete tutorial:
;Graphing Tutorials:
* http://ww2.coastal.edu/kingw/statistics/R-tutorials/graphs.html
* http://www.harding.edu/fmccown/r/

Latest revision as of 09:03, 11 February 2016

R Cheats:

Documentation

Basic Commands

  • getwd()
  • setwd(dir)
  • source(file)

Package Management

Dummies

  • install.packages("packagename")

Tutorials

General Tutorials
Graphing Tutorials