https://github.com/cran/spatstat
Revision cfbcc7dcf1726af32c52afc198eaf99a6c802ec5 authored by Adrian Baddeley on 01 June 2015, 07:46:50 UTC, committed by cran-robot on 01 June 2015, 07:46:50 UTC
1 parent cdb30ea
Raw File
Tip revision: cfbcc7dcf1726af32c52afc198eaf99a6c802ec5 authored by Adrian Baddeley on 01 June 2015, 07:46:50 UTC
version 1.42-0
Tip revision: cfbcc7d
README.md
spatstat
========

This repository holds a *copy* of the _current development version_ 
of the contributed R-package `spatstat`.

This development version is more recent than the current *release* of `spatstat` on CRAN.
A release of `spatstat` has a version number like 1.2-3 while a development version has a 
version number like 1.2-3.002.

Users of `spatstat` are encouraged to report bugs and make feature
requests here (press *issue* in the menu on the right to start a new bug report or feature request).

Feel free to fork `spatstat` and make pull requests. 
However, we are only in the process of moving to git and github, 
so this is not the actual development code at the moment and
your pull request may not be implemented until the next official release.

## Installation

The easiest way to install the github version of `spatstat` is through the `devtools` package:

```R
require(devtools)
install_github('spatstat/spatstat')
```

If you don't have `devtools` installed you should first run

```R
install.packages('devtools')
```
back to top