An open API service indexing awesome lists of open source software.

https://github.com/spatstat/spatstat.utils

Sub-package of spatstat containing utility functions
https://github.com/spatstat/spatstat.utils

r spatial-analysis spatial-data spatstat

Last synced: 3 days ago
JSON representation

Sub-package of spatstat containing utility functions

Awesome Lists containing this project

README

          

# spatstat.utils

## Utility functions

[![CRAN status](https://www.r-pkg.org/badges/version/spatstat.utils)](http://CRAN.R-project.org/package=spatstat.utils)
[![GitHub R package version](https://img.shields.io/github/r-package/v/spatstat/spatstat.utils)](https://github.com/spatstat/spatstat.utils)

The R package `spatstat.utils` contains utility functions, originally from the
[spatstat](https://github.com/spatstat/spatstat)
package, that may be useful for other purposes.
The utilities support

* Prime factorisation of integers

* Faster versions of some basic R tools

* English grammar

* Generating printed output

* Handling intervals (ranges) of real numbers

* Tools for handling a `formula`

* Symbolic polynomials

* Validating function arguments

* Handling/passing function arguments

* Traced optimization

* Workarounds for known bugs or undesirable features in other software.

### Installing the package

This repository contains the current _development version_ of the
`spatstat.utils` package. For the most recent _public release_ of
`spatstat.utils`, see the [CRAN page](https://CRAN.R-project.org/package=spatstat.utils).

The easiest way to install the development version
is to start R and type

```R
repo <- c('https://spatstat.r-universe.dev', 'https://cloud.r-project.org')
install.packages("spatstat.utils", dependencies=TRUE, repos=repo)
```

To install the latest _public release_ of `spatstat.utils`,
type

```R
install.packages("spatstat.utils")
```