unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* bug#27163: [PATCH 1/2] gnu: Add r-lubridate.
@ 2017-05-31 15:12 Ricardo Wurmus
  2017-05-31 15:12 ` bug#27164: [PATCH 2/2] gnu: Add r-fdrtool Ricardo Wurmus
  2017-06-09  1:29 ` bug#27163: [PATCH 1/2] gnu: Add r-lubridate Ricardo Wurmus
  0 siblings, 2 replies; 4+ messages in thread
From: Ricardo Wurmus @ 2017-05-31 15:12 UTC (permalink / raw)
  To: 27163; +Cc: Ricardo Wurmus

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

diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index b81bb4207..625f9f488 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -5231,3 +5231,29 @@ devices that don't have Cairo's capabilities such as alpha support or
 anti-aliasing.  Backends are modular such that any subset of backends
 is supported.")
     (license license:gpl2)))
+
+(define-public r-lubridate
+  (package
+    (name "r-lubridate")
+    (version "1.6.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "lubridate" version))
+       (sha256
+        (base32
+         "0ci6rwij9i1inn840m0mlh1nqgh6vm2lada9kdnjpcjp5kyfv1qs"))))
+    (build-system r-build-system)
+    (propagated-inputs
+     `(("r-stringr" ,r-stringr)))
+    (home-page
+     "http://cran.r-project.org/web/packages/lubridate")
+    (synopsis "Make dealing with dates a little easier")
+    (description
+     "This package provides functions to work with date-times and time-spans:
+fast and user friendly parsing of date-time data, extraction and updating of
+components of a date-time (years, months, days, hours, minutes, and seconds),
+algebraic manipulation on date-time and time-span objects.  The 'lubridate'
+package has a consistent and memorable syntax that makes working with dates
+easy and fun.")
+    (license license:gpl2)))
-- 
2.13.0

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

* bug#27164: [PATCH 2/2] gnu: Add r-fdrtool.
  2017-05-31 15:12 bug#27163: [PATCH 1/2] gnu: Add r-lubridate Ricardo Wurmus
@ 2017-05-31 15:12 ` Ricardo Wurmus
  2017-06-09  1:29   ` Ricardo Wurmus
  2017-06-09  1:29 ` bug#27163: [PATCH 1/2] gnu: Add r-lubridate Ricardo Wurmus
  1 sibling, 1 reply; 4+ messages in thread
From: Ricardo Wurmus @ 2017-05-31 15:12 UTC (permalink / raw)
  To: 27164; +Cc: Ricardo Wurmus

* gnu/packages/statistics.scm (r-fdrtool): New variable.
---
 gnu/packages/statistics.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index 625f9f488..ae44bfb01 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -5257,3 +5257,31 @@ algebraic manipulation on date-time and time-span objects.  The 'lubridate'
 package has a consistent and memorable syntax that makes working with dates
 easy and fun.")
     (license license:gpl2)))
+
+(define-public r-fdrtool
+  (package
+    (name "r-fdrtool")
+    (version "1.2.15")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "fdrtool" version))
+       (sha256
+        (base32
+         "1h46frlk7d9f4qx0bg6p55nrm9wwwz2sv6d1nz7061wdfsm69yb5"))))
+    (build-system r-build-system)
+    (home-page "http://strimmerlab.org/software/fdrtool/")
+    (synopsis "Estimation of false discovery rates and higher criticism")
+    (description
+     "This package provides tools to estimate both tail area-based false
+discovery rates (Fdr) as well as local false discovery rates (fdr) for a
+variety of null models (p-values, z-scores, correlation coefficients,
+t-scores).  The proportion of null values and the parameters of the null
+distribution are adaptively estimated from the data.  In addition, the package
+contains functions for non-parametric density estimation (Grenander
+estimator), for monotone regression (isotonic regression and antitonic
+regression with weights), for computing the greatest convex minorant (GCM) and
+the least concave majorant (LCM), for the half-normal and correlation
+distributions, and for computing empirical higher criticism (HC) scores and
+the corresponding decision threshold.")
+    (license license:gpl3+)))
-- 
2.13.0

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

* bug#27164: [PATCH 2/2] gnu: Add r-fdrtool.
  2017-05-31 15:12 ` bug#27164: [PATCH 2/2] gnu: Add r-fdrtool Ricardo Wurmus
@ 2017-06-09  1:29   ` Ricardo Wurmus
  0 siblings, 0 replies; 4+ messages in thread
From: Ricardo Wurmus @ 2017-06-09  1:29 UTC (permalink / raw)
  To: 27164-done


Ricardo Wurmus <ricardo.wurmus@mdc-berlin.de> writes:

> * gnu/packages/statistics.scm (r-fdrtool): New variable.
> ---

Pushed with commit 1dacc2695.

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

* bug#27163: [PATCH 1/2] gnu: Add r-lubridate.
  2017-05-31 15:12 bug#27163: [PATCH 1/2] gnu: Add r-lubridate Ricardo Wurmus
  2017-05-31 15:12 ` bug#27164: [PATCH 2/2] gnu: Add r-fdrtool Ricardo Wurmus
@ 2017-06-09  1:29 ` Ricardo Wurmus
  1 sibling, 0 replies; 4+ messages in thread
From: Ricardo Wurmus @ 2017-06-09  1:29 UTC (permalink / raw)
  To: 27163-done


Ricardo Wurmus <ricardo.wurmus@mdc-berlin.de> writes:

> * gnu/packages/statistics.scm (r-lubridate): New variable.

Pushed with commit db0bb6f0a.

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

end of thread, other threads:[~2017-06-09  1:31 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-05-31 15:12 bug#27163: [PATCH 1/2] gnu: Add r-lubridate Ricardo Wurmus
2017-05-31 15:12 ` bug#27164: [PATCH 2/2] gnu: Add r-fdrtool Ricardo Wurmus
2017-06-09  1:29   ` Ricardo Wurmus
2017-06-09  1:29 ` bug#27163: [PATCH 1/2] gnu: Add r-lubridate Ricardo Wurmus

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).