R statistics

From GRASS-Wiki
Revision as of 14:55, 11 August 2017 by ⚠️Pvb (talk | contribs)
Jump to navigation Jump to search

Overview

High quality statistic analysis in GRASS GIS is possible thanks to an interface to one of the most powerful statistics analysis package around: R (http://www.r-project.org). This R ←→ GRASS GIS interface is provided by the rgrass7 R addon package. The possibility to directly interact with R strongly increases the statistical and geospatial analysis capabilities of GRASS. See CRAN Task View: Analysis of Spatial Data for an overview of the R packages and functions that can be used for reading, visualizing, and analyzing spatial data.

R can be used in conjunction with GRASS GIS in different ways:

  • Running R 'on top of' GRASS, transferring GRASS data to R to run statistical functions on the imported data as R objects in memory, and possibly transfer the results back to GRASS. GRASS raster and vector data can be imported in R using the readVECT() and readRAST() function provided by rgrass7. Similarly, results can be written back using the writeRAST() and writeVECT() functions.
  • Using R as a scripting language in GRASS. GRASS functions can be run from R using the execGRASS() function in the rgrass7 package. R scripting tools, such as powerful string-processing tools and functions for manipulating file names, can be used to 'glue' different functions and tools together.
  • Using GRASS GIS as a geospatial library in R. GRASS GIS can be used to extent the geospatial capability of R by: (1) offering an extensive and robust set of geospatial tools, and (2) provides a way to work with very large (larger-than-memory) spatial data sets. See Using 'GRASS GIS functionality within a R session' below for more information.

In practice, one will often combine different approaches, with scripts running GRASS functions, importing resulting layers in R for further analysis and visualization, and creating new layers in R that are imported back in GRASS.

Installation

To install the R addon rgrass7 on newer versions of R, you simply start R and install the package directly with:

install.packages("rgrass7", dependencies = TRUE)

This will install rgrass7 and all its dependencies. To use the addon, you first need to load it:

library("rgrass7")

If you are using Rstudio, you can install the addon in the usual way (tool → packages). For further instructions and for trouble shooting, see R_statistics/Installation

How to use

You can use Using R in conjunction with GRASS GIS in two different ways: (1) run R within a GRASS GIS session, and (2) run GRASS GIS within a R session.

Using R within a GRASS GIS session

If you are primarily a GIS user who wants to run e.g., some statistical tests not available in GRASS, you probably want to run R from within a GRASS GIS session. To do so, first start GRASS GIS and then start R (or RStudio) from the GRASS GIS command line. For more information and examples, see R_statistics/rgrass7.

Using GRASS GIS functionality within a R session

If you are primarily a R user, who wants to take advantage of the advanced geospatial functions in GRASS, you probably want to use GRASS GIS within a R session. To connect to a GRASS GIS database from within R (or Rstudio), see the instructions on R_statistics/rgrass7. If you are a first time GRASS GIS User, you may want to check out the information for first time users first.

Examples

Getting help

Manual pages

If you are in R and have loaded the rgrass7 package, you can get the help page of rgrass7 by typing:

?rgrass7

Similarly, to get help for a specific function, e.g., for the function readRAST(), you type:

?readRAST

You can also start the R help page in your browser:

help.start()

Now, to get the information about the package, select the Packages entry and then rgrass7.

Support from the community

Primary support for R + GRASS and the rgrass7 package is through the grass-stats mailing list.

Useful links

R

Related

Articles & books

Older (but still useful) links

Note for users of the legacy GRASS GIS 6

If you are still using GRASS GIS 6, see R_statistics/spgrass6 for instructions and examples of using GRASS GIS in conjunction with R. However, you are strongly encouraged to upgrade to GRASS GIS 7. Not only does it offer many improvements and new functionalities (see this overview of New features), it also provides a smoother R-GRASS integration on the Windows platform.

About using R and GRASS with cygwin: It is possible to use Rterm inside the GRASS shell in cygwin, just as in Unix/Linux or OSX. You should not, however, start Rterm from a cygwin xterm, because Rterm is not expecting to be run in a xterm under Windows, and loses its input. If you use the regular cygwin bash shell, but need to start display windows, start X from within GRASS with startx &, and then start Rterm in the same cygwin shell, not in the xterm.