mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: Add r-acc.
* gnu/packages/cran.scm (r-acc): New variable.
This commit is contained in:
parent
63ec2c505a
commit
f95d454251
1 changed files with 33 additions and 0 deletions
|
@ -6024,3 +6024,36 @@ (define-public r-physicalactivity
|
||||||
It also supports importing ActiGraph (AGD) files with @code{readActigraph} and
|
It also supports importing ActiGraph (AGD) files with @code{readActigraph} and
|
||||||
@code{queryActigraph} functions.")
|
@code{queryActigraph} functions.")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
|
(define-public r-acc
|
||||||
|
(package
|
||||||
|
(name "r-acc")
|
||||||
|
(version "1.3.3")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (cran-uri "acc" version))
|
||||||
|
(sha256
|
||||||
|
(base32 "1ii2vm47djxbixa75h690q1s2f9m9x6i8nkygik93j6dayr6kr1m"))))
|
||||||
|
(build-system r-build-system)
|
||||||
|
(propagated-inputs
|
||||||
|
`(("r-circlize" ,r-circlize)
|
||||||
|
("r-dbi" ,r-dbi)
|
||||||
|
("r-ggplot2" ,r-ggplot2)
|
||||||
|
("r-iterators" ,r-iterators)
|
||||||
|
("r-mhsmm" ,r-mhsmm)
|
||||||
|
("r-nleqslv" ,r-nleqslv)
|
||||||
|
("r-physicalactivity" ,r-physicalactivity)
|
||||||
|
("r-plyr" ,r-plyr)
|
||||||
|
("r-r-utils" ,r-r-utils)
|
||||||
|
("r-rcpp" ,r-rcpp)
|
||||||
|
("r-rcpparmadillo" ,r-rcpparmadillo)
|
||||||
|
("r-rsqlite" ,r-rsqlite)
|
||||||
|
("r-zoo" ,r-zoo)))
|
||||||
|
(home-page "https://cran.r-project.org/web/packages/acc/")
|
||||||
|
(synopsis "Exploring accelerometer data")
|
||||||
|
(description
|
||||||
|
"This package processes accelerometer data from uni-axial and tri-axial devices
|
||||||
|
and generates data summaries. Also, includes functions to plot, analyze, and
|
||||||
|
simulate accelerometer data.")
|
||||||
|
(license license:gpl2+)))
|
||||||
|
|
Loading…
Reference in a new issue