1 / 35

An brief introduction to R and R Package used in ecology

An brief introduction to R and R Package used in ecology. Kechang Niu Department of Ecology , PKU 2010-06-19. What this is. o A short, highly incomplete tour around some of the basic concepts of R as a programming language

eze
Télécharger la présentation

An brief introduction to R and R Package used in ecology

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. An brief introduction to R and R Package used in ecology Kechang Niu Department of Ecology , PKU 2010-06-19

  2. What this is o A short, highly incomplete tour around some of the basic concepts of R as a programming language o Some hints on how to obtain documentation on the many library functions (packages)

  3. R, S and S-plus S: an interactive environment for data analysis developed at Bell Laboratories since 1976 1988 - S2: RA Becker, JM Chambers, A Wilks 1992 - S3: JM Chambers, TJ Hastie 1998 - S4: JM Chambers Exclusively licensed by AT&T/Lucent to Insightful Corporation, Seattle WA. Product name: “S-plus”. Implementation languages C, Fortran. See: http://cm.bell-labs.com/cm/ms/departments/sia/S/history.html

  4. R, S and S-plus • R: initially written by Ross Ihaka and Robert Gentleman at Dep. of Statistics of U of Auckland, New Zealand during 1990s. • Since 1997: international “R-core” team of ca. 15 people with access to common CVS archive. • GNU General Public License (GPL) • can be used by anyone for any purpose • contagious • Open Source • quality control! • efficient bug tracking and fixing system supported by the user community

  5. Advantages Disadvantages • data handling and storage: numeric, textual • matrix algebra • hash tables and regular expressions • high-level data analytic and statistical functions • classes (“OO”) • graphics • programming language: loops, branching, subroutines • is not a database, but connects to DBMSs • has no graphical user interfaces, but connects to Java, TclTk • language interpreter can be very slow, but allows to call own C/C++ code • no spreadsheet view of data, but connects to Excel/MsOffice • no professional / commercial support

  6. R Packagingand statistics • Packaging: a crucial infrastructure to efficiently produce, load and keep consistent software libraries from (many) different sources / authors • Statistics: most packages deal with statistics and data analysis • State of the art: many statistical researchers provide their methods as R packages

  7. R as a calculator > log2(32) [1] 5 > sqrt(2) [1] 1.414214 > seq(0, 5, length=6) [1] 0 1 2 3 4 5 > plot(sin(seq(0, 2*pi, length=100)))

  8. variables > a = 49 > sqrt(a) [1] 7 > a = "The dog ate my homework" > sub("dog","cat",a) [1] "The cat ate my homework“ > a = (1+1==3) > a [1] FALSE numeric character string logical

  9. missing values Variables of each data type (numeric, character, logical) can also take the value NA: not available. o NA is not the same as 0 o NA is not the same as “” o NA is not the same as FALSE Any operations (calculations, comparisons) that involve NA may or may not produce NA: > NA==1 [1] NA > 1+NA [1] NA > max(c(NA, 4, 7)) [1] NA > NA | TRUE [1] TRUE > NA & TRUE [1] NA

  10. Functions and Operators Functions do things with data “Input”: function arguments (0,1,2,…) “Output”: function result (exactly one) Example: add = function(a,b) { result = a+b return(result) } Operators: Short-cut writing for frequently used functions of one or two arguments. Examples: + - * / ! & | %%

  11. vectors and matrices vector: an ordered collection of data of the same type > a = c(1,2,3) > a*2 [1] 2 4 6 matrix: a rectangular table of data of the same type example: the expression values for 10000 genes for 30 tissue biopsies: a matrix with 10000 rows and 30 columns.

  12. Data frames data frame: is supposed to represent the typical data table that researchers come up with – like a spreadsheet. It is a rectangular table with rows and columns; data within each column has the same type (e.g. number, text, logical), but different columns may have different types. Example: > a localisation tumorsize progress XX348 proximal 6.3 FALSE XX234 distal 8.0 TRUE XX987 proximal 10.0 FALSE

  13. Loops When the same or similar tasks need to be performed multiple times; for all elements of a list; for all columns of an array; etc. for(i in 1:10) { print(i*i) } i=1 while(i<=10) { print(i*i) i=i+sqrt(i) }

  14. lapply, sapply, apply When the same or similar tasks need to be performed multiple times for all elements of a list or for all columns of an array. May be easier and faster than “for” loops lapply( li, fct ) To each element of the list li, the function fct is applied. The result is a list whose elements are the individual fct results. > li = list("klaus","martin","georg") > lapply(li, toupper) > [[1]] > [1] "KLAUS" > [[2]] > [1] "MARTIN" > [[3]] > [1] "GEORG"

  15. Regular expressions A tool for text matching and replacement which is available in similar forms in many programming languages (Perl, Unix shells, Java) > a = c("CENP-F","Ly-9", "MLN50", "ZNF191", "CLH-17") > grep("L", a) [1] 2 3 5 > grep("L", a, value=T) [1] "Ly-9" "MLN50" "CLH-17" > grep("^L", a, value=T) [1] "Ly-9" > grep("[0-9]", a, value=T) [1] "Ly-9" "MLN50" "ZNF191" "CLH-17" > gsub("[0-9]", "X", a) [1] "CENP-F" "Ly-X" "MLNXX" "ZNFXXX" "CLH-XX"

  16. Storing data Every R object can be stored into and restored from a file with the commands “save” and “load”. This uses the XDR (external data representation) standard of Sun Microsystems and others, and is portable between MS-Windows, Unix, Mac. > save(x, file=“x.Rdata”) > load(“x.Rdata”)

  17. Importing and exporting data • There are many ways to get data into R and out of R. • Most programs (e.g. Excel), as well as humans, know how to deal with rectangular tables in the form of tab-delimited text files. > x = read.delim(“filename.txt”) also: read.table, read.csv > write.table(x, file=“x.txt”, sep=“\t”)

  18. Getting help Details about a specific command whose name you know (input arguments, options, algorithm, results): >? t.test or >help(t.test)

  19. Getting helpo HTML search engineo search for topics with regular expressions:“help.search”

  20. Web sites www.r-project.org cran.r-project.org www.bioconductor.org Full text search: www.r-project.org or www.google.com with ‘… site:.r-project.org’ or other R-specific keywords

  21. R Packages • There are many contributed packages that can be used to extend R. • These libraries are created and maintained by the authors.

  22. Installing R packages from CRAN • install.packages(‘packageName’) • OR in Rgui: • select a local repository (if needed) • select package(s) from list

  23. R Package –barpot, simpleboot barplot() hist() image() plot() pairs() persp() piechart() polygon()

  24. R Package for Elegant Graphics– Lattice, ggplot2 Ggplot2: R Graphics Paul Murrell Ggplot2: Elegant Graphics for Data Analysis (Use R) Hadley Wickham

  25. R Package for Ecological Research

  26. ade4: Analysis of Ecological Data : Exploratory and Euclidean methods in Environmental sciences http://pbil.univ-lyon1.fr/ADE4/home.php?lang=eng • ade4 is characterized by : • the implementation of graphical and statistical functions • - the availability of numerical data • - the redaction of technical and thematic documentation • - the inclusion of bibliographic references

  27. Vegan: R functions for vegetation ecologists

  28. Introduction • R for Ecologists, a primer on the S language and available software • Familiarization with Data • Lab 1 Loading Vegetation Data and Simple Graphical Data Summaries • Lab 2 Loading Site/Environment Data and Simple Graphical Summaries • Lab 3 Vegetation Tables and Summaries • Modeling Species Distributions • Lab 4 Modeling Species Distributions with Generalized Linear Models • Lab 5 Modeling Species Distributions with Generalized Additive Models • Lab 6 Modeling Species Distributions with Classification Trees • Ordination • Lab 7 Principal Components Analysis • Lab 8 Principal Coordinates Analysis • Lab 9 Nonmetric Multi-Dimensional Scaling • Lab 10 Correspondence Analysis and Detrended Corresponence Analysis • Lab 11 Fuzzy Set Ordination • Lab 12 Canonical Correspondence Analysis • Cluster Analysis • Lab 13 Cluster Analysis • Lab 14 Discriminant Analysis with Tree Classifiers Vegan: R Labs for Vegetation Ecologists http://ecology.msu.montana.edu/labdsv/R/labs/ • Familiarization with Data • Lab 1 Loading Vegetation Data and Simple Graphical Data Summaries • Lab 2 Loading Site/Environment Data and Simple Graphical Summaries • Lab 3 Vegetation Tables and Summaries • Modeling Species Distributions • Lab 4 Modeling Species Distributions with Generalized Linear Models • Lab 5 Modeling Species Distributions with Generalized Additive Models • Lab 6 Modeling Species Distributions with Classification Trees • Ordination • Lab 7 Principal Components Analysis • Lab 8 Principal Coordinates Analysis • Lab 9 Nonmetric Multi-Dimensional Scaling • Lab 10 Correspondence Analysis and Detrended Corresponence Analysis • Lab 11 Fuzzy Set Ordination • Lab 12 Canonical Correspondence Analysis • Cluster Analysis • Lab 13 Cluster Analysis • Lab 14 Discriminant Analysis with Tree Classifiers • Introduction • R for Ecologists, a primer on the S language and available software

  29. Analysis of Phylogenetics and Evolution http://ape.mpl.ird.fr/ • ape is not a classical software (i.e., a "black box" though it can be used as one) but an environment for data analyses and development of new methods where interactivity and user's decisions are left an important place. • ape is written in R, but some functions for computer-intensive tasks are written in C. • ape is available for all main computer operating systems (Linux, Unix, Windows, MacOS X 10.4 and later). • ape is distributed under the terms of the GNU General Public Licence, meaning that it is free and can be freely modified and redistribued (under some conditions).

  30. untb: ecological drift under the UNTB A collection of utilities for biodiversity data. Includes the simulation of ecological drift under Hubbell's Unified Neutral Theory of Biodiversity, and the calculation of various diagnostics such as Preston curves. Functions (34) alonsoVarious functions from Alonso and McKane bciBarro Colorado Island (BCI) dataset butterfliesabundance data for butterflies etienneEtienne's sampling formula expected.abundance Expected abundances under the neutral model plot.countAbundance curves rand.neutral Random neutral ecosystem volkovExpected frequency of species zsm Zero sum multinomial distribution as derived by McKane 2004

  31. BiodiversityR: GUI for biodiversity and community ecology analysis • This package provides a GUI and some utility functions (often based on the vegan package) for statistical analysis of biodiversity and ecological communities, • species accumulation curves, • diversity indices, Renyi profiles, • GLMs for analysis of species abundance and presence-absence • distance matrices, • Mantel tests, and cluster, constrained and unconstrained ordination analysis. A book on biodiversity and community ecology analysis is available for free download from the website.

  32. sem: Structural Equation Models semis an R package for fitting structural-equation models. The package supports general structural equation models with latent varibles, fit by maximum likelihood assuming multinormality, and single-equation estimation for observed-variable models by two-stage least.squares

  33. smatr:(Standardised) Major Axis Estimation and Testing Routines This package provides methods of fitting bivariate lines in allometry using the major axis (MA) or standardised major axis (SMA), and for making inferences about such lines. The available methods of inference include confidence intervals and one-sample tests for slope and elevation, testing for a common slope or elevation amongst several allometric lines, constructing a confidence interval for a common slope or elevation, and testing for no shift along a common axis, amongst several samples.

  34. bio.infer:Maximum Likelihood Method for Predicting Environmental Conditions from Assemblage Composition popbio: Construction and analysis of matrix population models Construct and analyze projection matrix models from a demography study of marked individuals classified by age or stage. The package covers methods described in Matrix Population Models by Caswell (2001) and Quantitative Conservation Biology by Morris and Doak (2002). simecolallows to implement ecological models (ODEs, IBMs, ...) using a template-like object-oriented stucture. It helps to organize scenarios and may also be useful for other areas. demogR: Analysis of age-structured demographic models

  35. R2WinBUGS: Running WinBUGS and OpenBUGS from R / S-PLUS The R2WinBUGS package provides convenient functions to call WinBUGS from R. It automatically writes the data and scripts in a format readable by WinBUGS for processing in batch mode, which is possible since version 1.4. After the WinBUGS process has nished, it is possible either to read the resulting data into R by the package itself which gives a compact graphical summary of inference and convergence diagnostics or to use the facilities of the coda package for further analyses of the output.

More Related