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
- Host: GitHub
- URL: https://github.com/spatstat/spatstat.utils
- Owner: spatstat
- Created: 2016-12-30T09:14:14.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2026-05-07T05:28:43.000Z (27 days ago)
- Last Synced: 2026-05-07T07:33:32.559Z (27 days ago)
- Topics: r, spatial-analysis, spatial-data, spatstat
- Language: R
- Homepage:
- Size: 397 KB
- Stars: 5
- Watchers: 3
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: NEWS
Awesome Lists containing this project
README
# spatstat.utils
## Utility functions
[](http://CRAN.R-project.org/package=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")
```