diff options
author | pimi <madalinionel.patrascu@mdc-berlin.de> | 2018-10-01 08:30:37 -0400 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2018-10-01 08:37:16 -0400 |
commit | e710d1a4ffe0131d9a59eba1d1ad615f8448f50d (patch) | |
tree | a18fb68254fa089476988d7fb24b4541f825df66 /gnu | |
parent | b2bf43b22aad83c3d64391339f7c5f66c6d58789 (diff) | |
download | guix-e710d1a4ffe0131d9a59eba1d1ad615f8448f50d.tar.gz |
gnu: Add r-accelmissing.
* gnu/packages/cran.scm (r-accelmissing): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/cran.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index deb81f2430..a38c907cd5 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -5921,3 +5921,28 @@ data; @item utility functions. @end enumerate") (license license:gpl2))) + +(define-public r-accelmissing + (package + (name "r-accelmissing") + (version "1.4") + (source + (origin + (method url-fetch) + (uri (cran-uri "accelmissing" version)) + (sha256 + (base32 "1nql9inx6azdzi3z4sfm2vdml2mms6krl8wzlf1dn1c97ahn57fy")))) + (build-system r-build-system) + (propagated-inputs + `(("r-mice" ,r-mice) + ("r-pscl" ,r-pscl))) + (home-page "https://cran.r-project.org/web/packages/accelmissing/") + (synopsis "Missing value imputation for accelerometer data") + (description + "This package provides a statistical method to impute the missing values in +accelerometer data. The methodology includes both parametric and +semi-parametric multiple imputations under the zero-inflated Poisson lognormal +model. It also provides multiple functions to preprocess the accelerometer data +previous to the missing data imputation. These include detecting the wearing +and the non-wearing time, selecting valid days and subjects, and creating plots.") + (license license:gpl2+))) |