guix-commits
[Top][All Lists]
Advanced

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

17/53: gnu: Add r-sem.


From: guix-commits
Subject: 17/53: gnu: Add r-sem.
Date: Sat, 22 Feb 2020 14:46:10 -0500 (EST)

rekado pushed a commit to branch master
in repository guix.

commit 3d7115398f3cb1be7609f9ff852292db7c3ac78a
Author: Lars-Dominik Braun <address@hidden>
AuthorDate: Tue Feb 4 14:07:00 2020 +0100

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

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 1902ea4..30eee24 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -19690,3 +19690,30 @@ calculations for probability, econometric and 
numerical analysis.  There are
 additional functions that are comparable to APL functions which are useful for
 actuarial models such as pension mathematics.")
     (license license:gpl2+)))
+
+(define-public r-sem
+  (package
+    (name "r-sem")
+    (version "3.1-9")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "sem" version))
+       (sha256
+        (base32
+         "1f9c6g6pfx66gd2pappcsqh484ah6a0x4z47hpd46rah0817hcsa"))))
+    (properties `((upstream-name . "sem")))
+    (build-system r-build-system)
+    (propagated-inputs
+     `(("r-boot" ,r-boot)
+       ("r-mass" ,r-mass)
+       ("r-matrixcalc" ,r-matrixcalc)
+       ("r-mi" ,r-mi)))
+    (home-page "https://cran.r-project.org/package=sem";)
+    (synopsis "Structural equation models")
+    (description
+     "This package provides functions for fitting general linear structural
+equation models (with observed and latent variables) using the RAM approach,
+and for fitting structural equations in observed-variable models by two-stage
+least squares.")
+    (license license:gpl2+)))



reply via email to

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