guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

05/07: gnu: Add r-fit-models.


From: Ricardo Wurmus
Subject: 05/07: gnu: Add r-fit-models.
Date: Wed, 9 Aug 2017 14:08:34 -0400 (EDT)

rekado pushed a commit to branch master
in repository guix.

commit 5d0afe88497d81ac378c59890c1f517e6fc22bb2
Author: Ricardo Wurmus <address@hidden>
Date:   Wed Aug 9 18:12:39 2017 +0200

    gnu: Add r-fit-models.
    
    * gnu/packages/statistics.scm (r-fit-models): 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 4c04832..fae5d8d 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -4650,6 +4650,34 @@ analysis} (PCA) by projection pursuit.")
 estimation and robust multivariate analysis with high breakdown point.")
     (license license:gpl2+)))
 
+(define-public r-fit-models
+  (package
+    (name "r-fit-models")
+    (version "0.5-14")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "fit.models" version))
+       (sha256
+        (base32
+         "0vjbzmx0ambm6yzidb4vbgmhclwzwv2iz2cwl54ccdkvx4cx3fck"))))
+    (properties `((upstream-name . "fit.models")))
+    (build-system r-build-system)
+    (propagated-inputs
+     `(("r-lattice" ,r-lattice)))
+    (home-page "http://cran.r-project.org/web/packages/fit.models";)
+    (synopsis "Compare fitted models")
+    (description
+     "The @code{fit.models} function and its associated methods (coefficients, 
print,
+summary, plot, etc.) were originally provided in the @code{robust} package to
+compare robustly and classically fitted model objects.  The aim of the
address@hidden package is to separate this fitted model object comparison
+functionality from the robust package and to extend it to support fitting
+methods (e.g., classical, robust, Bayesian, regularized, etc.) more
+generally.")
+    ;; Any version of the GPL
+    (license (list license:gpl2+ license:gpl3+))))
+
 (define-public r-trimcluster
   (package
     (name "r-trimcluster")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]