mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-24 19:49:25 -05:00
gnu: Add r-archivist.
* gnu/packages/cran.scm (r-archivist): New variable.
This commit is contained in:
parent
be9d0ab2a5
commit
1a1ba08758
1 changed files with 36 additions and 0 deletions
|
@ -19084,3 +19084,39 @@ (define-public r-flock
|
||||||
using the @code{parallel} package for instance) using file locks. It supports
|
using the @code{parallel} package for instance) using file locks. It supports
|
||||||
both exclusive and shared locking.")
|
both exclusive and shared locking.")
|
||||||
(license license:asl2.0)))
|
(license license:asl2.0)))
|
||||||
|
|
||||||
|
(define-public r-archivist
|
||||||
|
(package
|
||||||
|
(name "r-archivist")
|
||||||
|
(version "2.3.4")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (cran-uri "archivist" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1i11hrcq1910jgd6diw6h3sxx624v57zjianm49pqvb2dvd0b8y7"))))
|
||||||
|
(properties `((upstream-name . "archivist")))
|
||||||
|
(build-system r-build-system)
|
||||||
|
(propagated-inputs
|
||||||
|
`(("r-dbi" ,r-dbi)
|
||||||
|
("r-digest" ,r-digest)
|
||||||
|
("r-flock" ,r-flock)
|
||||||
|
("r-httr" ,r-httr)
|
||||||
|
("r-lubridate" ,r-lubridate)
|
||||||
|
("r-magrittr" ,r-magrittr)
|
||||||
|
("r-rcurl" ,r-rcurl)
|
||||||
|
("r-rsqlite" ,r-rsqlite)))
|
||||||
|
(home-page "https://pbiecek.github.io/archivist/")
|
||||||
|
(synopsis "Tools for storing, restoring and searching for R objects")
|
||||||
|
(description
|
||||||
|
"Data exploration and modelling is a process in which a lot of data
|
||||||
|
artifacts are produced. Artifacts like: subsets, data aggregates, plots,
|
||||||
|
statistical models, different versions of data sets and different versions of
|
||||||
|
results. Archivist helps to store and manage artifacts created in R. It
|
||||||
|
allows you to store selected artifacts as binary files together with their
|
||||||
|
metadata and relations. Archivist allows sharing artifacts with others. It
|
||||||
|
can look for already created artifacts by using its class, name, date of the
|
||||||
|
creation or other properties. It also makes it easy to restore such
|
||||||
|
artifacts.")
|
||||||
|
(license license:gpl2)))
|
||||||
|
|
Loading…
Reference in a new issue