>From ec513916a977651ae3117f3f6ab270e691abcee0 Mon Sep 17 00:00:00 2001 From: Sahithi Yarlagadda Date: Thu, 29 Mar 2018 16:31:54 +0530 Subject: [PATCH] gnu: Add r-abc-data. * gnu/packages/cran.scm (r-abc-data): New variable. --- gnu/packages/cran.scm | 36 +++++++++++++++++++++++++++++------- 1 file changed, 29 insertions(+), 7 deletions(-) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 6f85f0d80..8602a7d87 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -2540,14 +2540,14 @@ supports arbitrary vertex/edge/graph attributes.") (name "r-statnet-common") (version "4.0.0") (source - (origin - (method url-fetch) - (uri (cran-uri "statnet.common" version)) - (sha256 - (base32 - "0yw6l5b4qv0jqlg4zyczas7m12a5pyqghs6ydxy2f6v6vxkijvi0")))) + (origin + (method url-fetch) + (uri (cran-uri "statnet.common" version)) + (sha256 + (base32 + "0yw6l5b4qv0jqlg4zyczas7m12a5pyqghs6ydxy2f6v6vxkijvi0")))) (properties - `((upstream-name . "statnet.common"))) + `((upstream-name . "statnet.common"))) (build-system r-build-system) (home-page "http://www.statnet.org") (synopsis "R scripts and utilities used by the Statnet software") @@ -3571,3 +3571,25 @@ and Eclat.") time formats, @code{parse_date} parses dates in unspecified formats, and @code{format_iso_8601} formats a date in ISO 8601 format.") (license license:gpl2))) + +(define-public r-abc-data + (package + (name "r-abc-data") + (version "1.0") + (source + (origin + (method url-fetch) + (uri (cran-uri "abc.data" version)) + (sha256 + (base32 + "1bv1n68ah714ws58cf285n2s2v5vn7382lfjca4jxph57lyg8hmj")))) + (properties `((upstream-name . "abc.data"))) + (build-system r-build-system) + (home-page "https://cran.r-project.org/web/packages/abc.data") + (synopsis "Data Only: Tools for Approximate Bayesian Computation (ABC)") + (description + "Contains data which are used by functions of the 'abc' package which +implements several @dfn{Approximate Bayesian Computation} (ABC) algorithms +for performing parameter estimation, model selection, and goodness-of-fit.") + (license license:gpl3))) + -- 2.16.2