me
/
guix
Archived
1
0
Fork 0

gnu: Add r-actfrag.

* gnu/packages/cran.scm (r-actfrag): New variable.
master
Ricardo Wurmus 2019-12-14 10:10:56 +01:00
parent 6790adf338
commit c090b9977c
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 27 additions and 0 deletions

View File

@ -17889,3 +17889,30 @@ label clusters so that examinees' attribute profiles can be obtained.")
poverty measures. It provides both empirical and theoretical Lorenz curves.")
;; Either of these two versions.
(license (list license:gpl2 license:gpl3))))
(define-public r-actfrag
(package
(name "r-actfrag")
(version "0.1.0")
(source
(origin
(method url-fetch)
(uri (cran-uri "ActFrag" version))
(sha256
(base32
"06l5a679j6289008ls57v420mnzpq9a4ln7svi5bh0vpvws7sr9d"))))
(properties `((upstream-name . "ActFrag")))
(build-system r-build-system)
(propagated-inputs
`(("r-accelerometry" ,r-accelerometry)
("r-dplyr" ,r-dplyr)
("r-ineq" ,r-ineq)
("r-survival" ,r-survival)
("r-tidyr" ,r-tidyr)))
(home-page "https://github.com/junruidi/ActFrag")
(synopsis "Activity fragmentation metrics extraction")
(description
"This package provides functions to extract commonly used fragmentation
metrics to quantify time accumulation strategies based on minute level
actigraphy-measured activity counts data.")
(license license:gpl3)))