diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2022-03-12 22:59:33 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2022-03-15 20:18:43 +0100 |
commit | 70c8a412f6f76101c88d4e1bf75f2994c5724bb3 (patch) | |
tree | d4525b60943fe31e98b86022630dce696aa24cc0 /gnu | |
parent | 0d5a01ab0f87502afc6f91cba50b3946612fafd0 (diff) | |
download | guix-70c8a412f6f76101c88d4e1bf75f2994c5724bb3.tar.gz guix-70c8a412f6f76101c88d4e1bf75f2994c5724bb3.zip |
gnu: Add r-spatstat-random.
* gnu/packages/cran.scm (r-spatstat-random): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/cran.scm | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index e56db0b9dc..094bb70341 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -27017,6 +27017,34 @@ user-level code from spatstat, except for the code for linear networks.") for spatial data on a linear network.") (license license:gpl2+))) +(define-public r-spatstat-random + (package + (name "r-spatstat-random") + (version "2.1-0") + (source + (origin + (method url-fetch) + (uri (cran-uri "spatstat.random" version)) + (sha256 + (base32 "0ggzl64iqf7b6n81ga66wb01sm4rmzrbimv2pmgy047mjnqsnpq4")))) + (properties `((upstream-name . "spatstat.random"))) + (build-system r-build-system) + (propagated-inputs (list r-spatstat-data r-spatstat-geom r-spatstat-utils)) + (home-page "http://spatstat.org/") + (synopsis "Random Generation Functionality for the 'spatstat' Family") + (description + "This package provides functionality for random generation of spatial +data in the spatstat family of packages. It generates random spatial patterns +of points according to many simple rules (complete spatial randomness, +Poisson, binomial, random grid, systematic, cell), randomised alteration of +patterns (thinning, random shift, jittering), simulated realisations of random +point processes (simple sequential inhibition, Matern inhibition models, +Matern cluster process, Neyman-Scott cluster processes, log-Gaussian Cox +processes, product shot noise cluster processes) and simulation of Gibbs point +processes (Metropolis-Hastings birth-death-shift algorithm, alternating Gibbs +sampler).") + (license license:gpl2+))) + (define-public r-spatstat (package (name "r-spatstat") |