unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#32701]
@ 2018-09-11 13:40 MadalinIonel.Patrascu
  2018-09-11 14:05 ` [bug#32701] [PATCH 1/2] gnu: Add r-pscl pimi
  0 siblings, 1 reply; 4+ messages in thread
From: MadalinIonel.Patrascu @ 2018-09-11 13:40 UTC (permalink / raw)
  To: 32701




Mădălin Ionel Patrașcu

System Administrator
Bioinformatics Platform
The Berlin Institute for Medical Systems Biology (BIMSB)
Max Delbrück Center (MDC)
Robert-Rössle-Straße 10
House 87, room 1.10
13125 Berlin, Germany

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [bug#32701] [PATCH 1/2] gnu: Add r-pscl.
  2018-09-11 13:40 [bug#32701] MadalinIonel.Patrascu
@ 2018-09-11 14:05 ` pimi
  2018-09-11 14:05   ` [bug#32701] [PATCH 2/2] gnu: Add r-accelmissing pimi
  2018-10-01 12:38   ` bug#32701: [PATCH 1/2] gnu: Add r-pscl Leo Famulari
  0 siblings, 2 replies; 4+ messages in thread
From: pimi @ 2018-09-11 14:05 UTC (permalink / raw)
  To: 32701; +Cc: pimi

gnu/packages/cran.scm (r-pscl): New variable.
---
 gnu/packages/cran.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 0f39080b3..e3c813bf2 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -5871,3 +5871,29 @@ that are part of an activity bout, and find the maximum 10-minute average count
 value.  The functions are generally very flexible, allowing for a variety of
 algorithms to be implemented.")
     (license license:gpl3)))
+
+(define-public r-pscl
+  (package
+    (name "r-pscl")
+    (version "1.5.2")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "pscl" version))
+       (sha256
+        (base32 "1phf3awsfr4ncqfqzin5m1pz0g7y1zhbcm2sz7358ssw914fd7rc"))))
+    (build-system r-build-system)
+    (propagated-inputs
+     `(("r-mass" ,r-mass)))
+    (home-page "https://github.com/atahk/pscl/")
+    (synopsis "Political science computational laboratory")
+    (description
+     "The @code{pscl} is an R package providing classes and methods for:
+@enumerate
+@item Bayesian analysis of roll call data (item-response models);
+@item elementary Bayesian statistics;
+@item maximum likelihood estimation of zero-inflated and hurdle models for count
+data;
+@item utility functions.
+@end enumerate")
+    (license license:gpl2)))
-- 
2.17.1

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [bug#32701] [PATCH 2/2] gnu: Add r-accelmissing.
  2018-09-11 14:05 ` [bug#32701] [PATCH 1/2] gnu: Add r-pscl pimi
@ 2018-09-11 14:05   ` pimi
  2018-10-01 12:38   ` bug#32701: [PATCH 1/2] gnu: Add r-pscl Leo Famulari
  1 sibling, 0 replies; 4+ messages in thread
From: pimi @ 2018-09-11 14:05 UTC (permalink / raw)
  To: 32701; +Cc: pimi

gnu/packages/cran.scm (r-accelmissing): New variable.
---
 gnu/packages/cran.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index e3c813bf2..541a26645 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -5897,3 +5897,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+)))
-- 
2.17.1

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* bug#32701: [PATCH 1/2] gnu: Add r-pscl.
  2018-09-11 14:05 ` [bug#32701] [PATCH 1/2] gnu: Add r-pscl pimi
  2018-09-11 14:05   ` [bug#32701] [PATCH 2/2] gnu: Add r-accelmissing pimi
@ 2018-10-01 12:38   ` Leo Famulari
  1 sibling, 0 replies; 4+ messages in thread
From: Leo Famulari @ 2018-10-01 12:38 UTC (permalink / raw)
  To: pimi; +Cc: 32701-done

[-- Attachment #1: Type: text/plain, Size: 181 bytes --]

On Tue, Sep 11, 2018 at 04:05:02PM +0200, pimi wrote:
> gnu/packages/cran.scm (r-pscl): New variable.

Thanks! I pushed the patch series as
e710d1a4ffe0131d9a59eba1d1ad615f8448f50d

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2018-10-01 12:39 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-09-11 13:40 [bug#32701] MadalinIonel.Patrascu
2018-09-11 14:05 ` [bug#32701] [PATCH 1/2] gnu: Add r-pscl pimi
2018-09-11 14:05   ` [bug#32701] [PATCH 2/2] gnu: Add r-accelmissing pimi
2018-10-01 12:38   ` bug#32701: [PATCH 1/2] gnu: Add r-pscl Leo Famulari

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).