unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
From: Raoul Bonnal <ilpuccio.febo@gmail.com>
To: guix-devel@gnu.org
Subject: [PATCH 22/35] gnu: Add r-quantreg.
Date: Thu, 19 Jan 2017 19:55:17 +0100	[thread overview]
Message-ID: <20170119185530.35824-22-ilpuccio.febo@gmail.com> (raw)
In-Reply-To: <20170119185530.35824-1-ilpuccio.febo@gmail.com>

From: Raoul Jean Pierre Bonnal <ilpuccio.febo@gmail.com>

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

diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index 9f8f53d..fc4f6f2 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -4514,3 +4514,30 @@ models written in C++ using Rcpp.")
      "This package models with sparse and dense matrix matrices,
 using modular prediction and response module classes.")
     (license license:gpl2+)))
+
+(define-public r-quantreg
+  (package
+    (name "r-quantreg")
+    (version "5.29")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "quantreg" version))
+       (sha256
+        (base32
+         "098gy8xv9kcl5y0cm93b8chr5sm6crrdxi20bkx9lmwmybl3himv"))))
+    (build-system r-build-system)
+    (inputs
+     `(("gfortran" ,gfortran)))
+    (propagated-inputs
+     `(("r-matrixmodels" ,r-matrixmodels)
+       ("r-sparsem" ,r-sparsem)))
+    (home-page "http://www.r-project.org")
+    (synopsis "Quantile regression")
+    (description
+     "This package provides an estimation and inference methods for models
+of conditional quantiles: linear and nonlinear parametric and non-parametric
+models for conditional quantiles of a univariate response and several methods
+for handling censored survival data.  Portfolio selection methods based on
+expected shortfall risk are also included.")
+    (license license:gpl2+)))
-- 
1.9.1

  parent reply	other threads:[~2017-01-19 18:56 UTC|newest]

Thread overview: 40+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-01-19 18:54 [PATCH 01/35] gnu: Add r-cowplot Raoul Bonnal
2017-01-19 18:54 ` [PATCH 02/35] gnu: Add r-mixtools Raoul Bonnal
2017-01-19 18:54 ` [PATCH 03/35] gnu: Add r-lars Raoul Bonnal
2017-01-19 18:54 ` [PATCH 04/35] gnu: Add r-fastica Raoul Bonnal
2017-01-19 18:55 ` [PATCH 05/35] gnu: Add r-tsne Raoul Bonnal
2017-01-19 18:55 ` [PATCH 06/35] gnu: Add r-diptest Raoul Bonnal
2017-01-19 18:55 ` [PATCH 07/35] gnu: Add r-modeltools Raoul Bonnal
2017-01-19 18:55 ` [PATCH 08/35] gnu: Add r-flexmix Raoul Bonnal
2017-01-19 18:55 ` [PATCH 09/35] gnu: Add r-mclust Raoul Bonnal
2017-01-19 18:55 ` [PATCH 10/35] gnu: Add r-prabclus Raoul Bonnal
2017-01-19 18:55 ` [PATCH 11/35] gnu: Add r-deoptimr Raoul Bonnal
2017-01-19 18:55 ` [PATCH 12/35] gnu: Add r-robustbase Raoul Bonnal
2017-01-19 18:55 ` [PATCH 13/35] gnu: Add r-trimcluster Raoul Bonnal
2017-01-19 18:55 ` [PATCH 14/35] gnu: Add r-fpc Raoul Bonnal
2017-01-19 18:55 ` [PATCH 15/35] gnu: Add r-ape Raoul Bonnal
2017-01-19 18:55 ` [PATCH 16/35] gnu: Add r-vgam Raoul Bonnal
2017-01-19 18:55 ` [PATCH 17/35] gnu: Add r-pbapply Raoul Bonnal
2017-01-19 18:55 ` [PATCH 18/35] gnu: Add r-fnn Raoul Bonnal
2017-01-19 18:55 ` [PATCH 19/35] gnu: Add r-pbkrtest Raoul Bonnal
2017-01-19 18:55 ` [PATCH 20/35] gnu: Add r-modelmetrics Raoul Bonnal
2017-01-19 18:55 ` [PATCH 21/35] gnu: Add r-matrixmodels Raoul Bonnal
2017-01-19 18:55 ` Raoul Bonnal [this message]
2017-01-19 18:55 ` [PATCH 23/35] gnu: Add r-car Raoul Bonnal
2017-01-19 18:55 ` [PATCH 24/35] gnu: Add r-rcppeigen Raoul Bonnal
2017-01-19 18:55 ` [PATCH 25/35] gnu: Add r-minqa Raoul Bonnal
2017-01-19 18:55 ` [PATCH 26/35] gnu: Add r-nloptr Raoul Bonnal
2017-01-19 18:55 ` [PATCH 27/35] gnu: Add r-caret Raoul Bonnal
2017-01-19 18:55 ` [PATCH 28/35] gnu: Add r-lme4 Raoul Bonnal
2017-01-19 18:55 ` [PATCH 29/35] gnu: Add r-rcppprogress Raoul Bonnal
2017-01-19 18:55 ` [PATCH 30/35] gnu: Add r-mnormt Raoul Bonnal
2017-01-19 18:55 ` [PATCH 31/35] gnu: Add r-numderiv Raoul Bonnal
2017-01-19 18:55 ` [PATCH 32/35] gnu: Add r-sn Raoul Bonnal
2017-01-19 18:55 ` [PATCH 33/35] gnu: Add r-tclust Raoul Bonnal
2017-01-19 18:55 ` [PATCH 34/35] gnu: Add r-ranger Raoul Bonnal
2017-01-19 18:55 ` [PATCH 35/35] gnu: Add r-seurat Raoul Bonnal
2017-03-12 11:42   ` Ben Woodcroft
2017-03-16 13:07     ` bug#26072: " Ricardo Wurmus
2017-03-16 14:14       ` Ricardo Wurmus
2017-01-20 21:04 ` [PATCH 01/35] gnu: Add r-cowplot Ludovic Courtès
2017-01-21 10:25   ` Ricardo Wurmus

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20170119185530.35824-22-ilpuccio.febo@gmail.com \
    --to=ilpuccio.febo@gmail.com \
    --cc=guix-devel@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).