Skip to content

Latest commit

 

History

History
57 lines (36 loc) · 1.76 KB

File metadata and controls

57 lines (36 loc) · 1.76 KB

spatstat.utils

Utility functions

CRAN status GitHub R package version Travis-CI Build Status Code Coverage Score

The R package spatstat.utils contains utility functions, originally from the 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.

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

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

install.packages("spatstat.utils")