This commit is contained in:
Glenn Johnson 2021-01-16 08:27:59 -06:00 committed by GitHub
parent 9c4c558e2a
commit 74144d44d8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,16 +7,20 @@
class RGeor(RPackage): class RGeor(RPackage):
"""Geostatistical analysis including traditional, likelihood-based """Analysis of Geostatistical Data
and Bayesian methods."""
Geostatistical analysis including variogram-based, likelihood-based and
Bayesian methods. Software companion for Diggle and Ribeiro (2007)
<doi:10.1007/978-0-387-48536-2>."""
homepage = "https://cloud.r-project.org/package=geoR" homepage = "https://cloud.r-project.org/package=geoR"
url = "https://cloud.r-project.org/src/contrib/geoR_1.7-5.2.1.tar.gz" url = "https://cloud.r-project.org/src/contrib/geoR_1.7-5.2.1.tar.gz"
list_url = "https://cloud.r-project.org/src/contrib/Archive/geoR" list_url = "https://cloud.r-project.org/src/contrib/Archive/geoR"
version('1.8-1', sha256='990647804590b925a50f72897b24bbabd331cebef0be1696a60528b2f79d6fd3')
version('1.7-5.2.1', sha256='3895e49c005a5745738d190ccaad43bb0aa49c74465d4d0b4dd88c5850ed63b9') version('1.7-5.2.1', sha256='3895e49c005a5745738d190ccaad43bb0aa49c74465d4d0b4dd88c5850ed63b9')
depends_on('r@2.10:', type=('build', 'run')) depends_on('r+X@2.10:', type=('build', 'run'))
depends_on('r-mass', type=('build', 'run')) depends_on('r-mass', type=('build', 'run'))
depends_on('r-sp', type=('build', 'run')) depends_on('r-sp', type=('build', 'run'))
depends_on('r-splancs', type=('build', 'run')) depends_on('r-splancs', type=('build', 'run'))