unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: Lars-Dominik Braun <ldb@leibniz-psychology.org>
To: 39416@debbugs.gnu.org
Cc: Lars-Dominik Braun <ldb@leibniz-psychology.org>
Subject: [bug#39416] [PATCH 33/34] gnu: Add package r-erm
Date: Tue,  4 Feb 2020 14:56:25 +0100	[thread overview]
Message-ID: <20200204135626.28261-33-ldb@leibniz-psychology.org> (raw)
In-Reply-To: <20200204135626.28261-1-ldb@leibniz-psychology.org>

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

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index d7da059bee..7e466e3fdf 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -20201,3 +20201,35 @@ and Wang, 1997 <doi:10.1177/0146621697211001>, Adams, Wilson and Wu, 1997
 <doi:10.3102/10769986022001047>, Formann, 1982 <doi:10.1002/bimj.4710240209>,
 Formann, 1992 <doi:10.1080/01621459.1992.10475229>.")
     (license license:gpl2+)))
+
+(define-public r-erm
+  (package
+    (name "r-erm")
+    (version "1.0-0")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (cran-uri "eRm" version))
+        (sha256
+          (base32
+            "11p8j61arq1ih2qi33wf0442vcdbp3zvknzm5aknsifwl4mbzzly"))))
+    (properties `((upstream-name . "eRm")))
+    (build-system r-build-system)
+    (propagated-inputs
+      `(("r-lattice" ,r-lattice)
+        ("r-mass" ,r-mass)
+        ("r-matrix" ,r-matrix)))
+    (native-inputs `(("gfortran" ,gfortran)))
+    (home-page
+      "https://cran.r-project.org/package=eRm")
+    (synopsis "Extended Rasch Modeling")
+    (description
+      "Fits Rasch models (RM), linear logistic test models (LLTM), rating scale
+model (RSM), linear rating scale models (LRSM), partial credit models (PCM),
+and linear partial credit models (LPCM).  Missing values are allowed in the
+data matrix.  Additional features are the ML estimation of the person
+parameters, Andersen's LR-test, item-specific Wald test, Martin-Loef-Test,
+nonparametric Monte-Carlo Tests, itemfit and personfit statistics including
+infit and outfit measures, ICC and other plots, automated stepwise item
+elimination, simulation module for various binary data matrices.")
+    (license license:gpl3)))
-- 
2.20.1

  parent reply	other threads:[~2020-02-04 13:57 UTC|newest]

Thread overview: 38+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-02-04 13:54 [bug#39416] Bulk import of R packages Lars-Dominik Braun
2020-02-04 13:55 ` [bug#39416] [PATCH 01/34] gnu: Add package r-fracdiff Lars-Dominik Braun
2020-02-04 13:55   ` [bug#39416] [PATCH 02/34] gnu: Add package r-forecast Lars-Dominik Braun
2020-02-04 13:55   ` [bug#39416] [PATCH 03/34] gnu: Add package r-xmisc Lars-Dominik Braun
2020-02-04 13:55   ` [bug#39416] [PATCH 04/34] gnu: Add package r-proxyc Lars-Dominik Braun
2020-02-04 13:55   ` [bug#39416] [PATCH 05/34] gnu: Add package r-isocodes Lars-Dominik Braun
2020-02-04 13:55   ` [bug#39416] [PATCH 06/34] gnu: Add package r-stopwords Lars-Dominik Braun
2020-02-04 13:55   ` [bug#39416] [PATCH 07/34] gnu: Add package r-spacyr Lars-Dominik Braun
2020-02-04 13:56   ` [bug#39416] [PATCH 08/34] gnu: Add package r-snowballc Lars-Dominik Braun
2020-02-04 13:56   ` [bug#39416] [PATCH 09/34] gnu: Add package r-quanteda Lars-Dominik Braun
2020-02-04 13:56   ` [bug#39416] [PATCH 10/34] gnu: Add package r-topicmodels Lars-Dominik Braun
2020-02-04 13:56   ` [bug#39416] [PATCH 11/34] gnu: Add package r-stm Lars-Dominik Braun
2020-02-04 13:56   ` [bug#39416] [PATCH 12/34] gnu: Add package r-polycor Lars-Dominik Braun
2020-02-04 13:56   ` [bug#39416] [PATCH 13/34] gnu: Add package r-msm Lars-Dominik Braun
2020-02-04 13:56   ` [bug#39416] [PATCH 14/34] gnu: Add package r-ltm Lars-Dominik Braun
2020-02-04 13:56   ` [bug#39416] [PATCH 15/34] gnu: Add package r-mi Lars-Dominik Braun
2020-02-04 13:56   ` [bug#39416] [PATCH 16/34] gnu: Add package r-matrixcalc Lars-Dominik Braun
2020-02-04 13:56   ` [bug#39416] [PATCH 17/34] gnu: Add package r-sem Lars-Dominik Braun
2020-02-04 13:56   ` [bug#39416] [PATCH 18/34] gnu: Add package r-semtools Lars-Dominik Braun
2020-02-04 13:56   ` [bug#39416] [PATCH 19/34] gnu: Add package r-regsem Lars-Dominik Braun
2020-02-04 13:56   ` [bug#39416] [PATCH 20/34] gnu: Add package r-stanheaders Lars-Dominik Braun
2020-02-04 13:56   ` [bug#39416] [PATCH 21/34] gnu: Add package r-rpf Lars-Dominik Braun
2020-02-04 13:56   ` [bug#39416] [PATCH 22/34] gnu: Add package r-openmx Lars-Dominik Braun
2020-02-04 13:56   ` [bug#39416] [PATCH 23/34] gnu: Add package r-kutils Lars-Dominik Braun
2020-02-04 13:56   ` [bug#39416] [PATCH 24/34] gnu: Add package r-rockchalk Lars-Dominik Braun
2020-02-04 13:56   ` [bug#39416] [PATCH 25/34] gnu: Add package r-lisreltor Lars-Dominik Braun
2020-02-04 13:56   ` [bug#39416] [PATCH 26/34] gnu: Add package r-bdgraph Lars-Dominik Braun
2020-02-04 13:56   ` [bug#39416] [PATCH 27/34] gnu: Add package r-ggm Lars-Dominik Braun
2020-02-04 13:56   ` [bug#39416] [PATCH 28/34] gnu: Add package r-d3network Lars-Dominik Braun
2020-02-04 13:56   ` [bug#39416] [PATCH 29/34] gnu: Add package r-qgraph Lars-Dominik Braun
2020-02-04 13:56   ` [bug#39416] [PATCH 30/34] gnu: Add package r-semplot Lars-Dominik Braun
2020-02-04 13:56   ` [bug#39416] [PATCH 31/34] gnu: Add package r-cdm Lars-Dominik Braun
2020-02-04 13:56   ` [bug#39416] [PATCH 32/34] gnu: Add package r-tam Lars-Dominik Braun
2020-02-04 13:56   ` Lars-Dominik Braun [this message]
2020-02-04 13:56   ` [bug#39416] [PATCH 34/34] gnu: Add package r-irtoys Lars-Dominik Braun
2020-02-04 15:56 ` [bug#39416] Bulk import of R packages Ricardo Wurmus
2020-02-06 13:52   ` Lars-Dominik Braun
2020-02-22 19:49     ` bug#39416: " 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=20200204135626.28261-33-ldb@leibniz-psychology.org \
    --to=ldb@leibniz-psychology.org \
    --cc=39416@debbugs.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).