From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:49844) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iexrj-0003T5-NK for guix-patches@gnu.org; Wed, 11 Dec 2019 04:01:09 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iexri-00014I-9G for guix-patches@gnu.org; Wed, 11 Dec 2019 04:01:03 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:50937) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iexri-00013J-33 for guix-patches@gnu.org; Wed, 11 Dec 2019 04:01:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iexri-0003yi-1G for guix-patches@gnu.org; Wed, 11 Dec 2019 04:01:02 -0500 Subject: [bug#34692] [PATCH] gnu: add r-statcheck. Resent-Message-ID: From: =?UTF-8?Q?Nicol=C3=B2?= Balzarotti In-Reply-To: References: <20190301080758.5548-1-anothersms@gmail.com> <20190301080758.5548-6-anothersms@gmail.com> <87zhq6tqpx.fsf@elephly.net> <877ecpux2p.fsf@gnu.org> Date: Wed, 11 Dec 2019 10:00:13 +0100 Message-ID: <87zhfzkzj6.fsf@guixSD.i-did-not-set--mail-host-address--so-tickle-me> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: Ludovic =?UTF-8?Q?Court=C3=A8s?= Cc: "34692@debbugs.gnu.org" <34692@debbugs.gnu.org> --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Nicol=C3=B2 Balzarotti writes: > Hi, sorry for the delay! > I'll try to have a look tomorrow :) > > Nicol=C3=B2 > > Il giorno sabato 23 marzo 2019, Ludovic Court=C3=A8s ha sc= ritto: >> Hi Nicol=C3=B2, >> >> Ricardo Wurmus skribis: >> >>> Unfortunately, this patch includes unrelated changes (to >>> r-statnet-common) and does not have a proper commit summary. The >>> changes adding r-statcheck lack a proper description (you should use >>> full sentences). >>> >>> Would you like to send another patch addressing these issues? >> >> Did you have a chance to look into that, Nicol=C3=B2? >> >> Thanks in advance! >> >> Ludo=E2=80=99. >> I have to admit, today is not March 24th, but finally here's the updated patch (no new versions have been released since btw). Sorry for the delay and thanks! Nicol=C3=B2 --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=0001-gnu-Add-r-statcheck.patch >From 381ae9f063242b5740d5842b3fd515175a634a45 Mon Sep 17 00:00:00 2001 From: nixo Date: Wed, 11 Dec 2019 09:51:30 +0100 Subject: [PATCH] gnu: Add r-statcheck. * gnu/packages/cran.scm (r-statcheck): New variable. --- gnu/packages/cran.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 11d254001f..a8605221c3 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -4168,6 +4168,31 @@ supports arbitrary vertex/edge/graph attributes.") software developed by the Statnet Project.") (license license:gpl3))) +(define-public r-statcheck + (package + (name "r-statcheck") + (version "1.3.0") + (source + (origin + (method url-fetch) + (uri (cran-uri "statcheck" version)) + (sha256 + (base32 + "0ivybdcrymlsfv6pg6p5bv70qdvgxf2vgp0kf4r0pf2fcvav1mcp")))) + (build-system r-build-system) + (propagated-inputs + `(("r-ggplot2" ,r-ggplot2) + ("r-plyr" ,r-plyr) + ("r-rmarkdown" ,r-rmarkdown))) + (home-page + "https://cran.r-project.org/web/packages/statcheck") + (synopsis "Extract statistics from articles and recompute p-values") + (description "This package can automatically extract statistical null-hypothesis +significant testing (NHST) results from articles and recompute the p-values +based on the reported test statistic and degrees of freedom to detect possible +inconsistencies.") + (license license:gpl2))) + (define-public r-sna (package (name "r-sna") -- 2.24.0 --=-=-=--