110 likes | 345 Views
A very short introduction to R. Pia Wohland. R is… A statistical software Programming language -Free! -Very good in handling and manipulating data sets -very comprehensive, easy to learn -large community, with many contributors -well supported mailing list
E N D
A very shortintroduction to R Pia Wohland
R is… • A statistical software • Programming language • -Free! • -Very good in handling and manipulating data sets • -very comprehensive, easy to learn • -large community, with many contributors • -well supported mailing list • -additinal packages written by users • Works with command line • but some graphical user interfaces (GUI) available: • R-Commander, Rpad, SciViews-R • •Info on R • http://www.r-project.org/ • •Download software • http://cran.r-project.org/
Create your own functions See an example in the Practical this afternoon! Maps Graphics http://addictedtor.free.fr/graphiques/ Manage your data Statistics
R under windows > Command prompt
You can type your commands directly at the command prompt (>) or you can use the Editor window. The advantage of the editor is, you can save your script straight away.
Help youRself.... > help() # opens help > help.start() # opens R-Documentation in a browser window > help(command) # shows help on “command” > ?command # shows help on “command” > library() # Shows which packages are loaded? > library(help="graphics") # Shows help for package “graphics” For example > ?plot
Package the command belongs to How to use What arguments, and their default settings
Links to related subject Always examples at the bottom
Essentials: R is case sensitive! (beware auto correction) Decimal separator `.´ not`,´ Character strings are placed in “ “ Where are my data? To find out in which directory R is working: getwd() To change the directory: setwd(“pathname”) Caution: setwd(“C:\\SummerSchoolPracticals“) setwd(“C:/SummerSchoolPracticals“) When importing your own data: best no spaces in header. 2,71828 2.71828