From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:40870) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fuvYF-0006Yn-5f for guix-patches@gnu.org; Wed, 29 Aug 2018 04:10:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fuvYB-0005IM-T9 for guix-patches@gnu.org; Wed, 29 Aug 2018 04:10:07 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:59568) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fuvYB-0005I8-Ng for guix-patches@gnu.org; Wed, 29 Aug 2018 04:10:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fuvYB-0001QC-CP for guix-patches@gnu.org; Wed, 29 Aug 2018 04:10:03 -0400 Subject: [bug#32569] [PATCH] gnu: Add r-ggstance. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:40690) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fuvXi-0006W4-N5 for guix-patches@gnu.org; Wed, 29 Aug 2018 04:09:35 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fuvXf-00051T-F0 for guix-patches@gnu.org; Wed, 29 Aug 2018 04:09:34 -0400 Received: from pegasus.bbbm.mdc-berlin.de ([141.80.25.20]:44724) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1fuvXf-00050X-2Q for guix-patches@gnu.org; Wed, 29 Aug 2018 04:09:31 -0400 Received: from localhost (localhost [127.0.0.1]) by pegasus.bbbm.mdc-berlin.de (Postfix) with ESMTP id 2EF82A6A1FD for ; Wed, 29 Aug 2018 10:09:29 +0200 (CEST) Received: from pegasus.bbbm.mdc-berlin.de ([127.0.0.1]) by localhost (pegasus.bbbm.mdc-berlin.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Ed-G2u0ywo8K for ; Wed, 29 Aug 2018 10:09:23 +0200 (CEST) Received: from SW-IT-P-CAS3.mdc-berlin.net (puck.citx.mdc-berlin.de [141.80.36.101]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-SHA384 (256/256 bits)) (No client certificate requested) by pegasus.bbbm.mdc-berlin.de (Postfix) with ESMTPS for ; Wed, 29 Aug 2018 10:09:23 +0200 (CEST) From: pimi Date: Wed, 29 Aug 2018 10:09:12 +0200 Message-ID: <20180829080912.14557-1-madalinionel.patrascu@mdc-berlin.de> MIME-Version: 1.0 Content-Type: text/plain 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: 32569@debbugs.gnu.org Cc: pimi gnu/packages/cran.scm (r-ggstance): New variable. --- gnu/packages/cran.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index b6667789c..9be759992 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -5018,3 +5018,29 @@ including summary statistic selection and assessing coverage. This includes recent dimension reduction algorithms to tune the choice of summary statistics, and coverage methods to tune the choice of threshold.") (license license:gpl2+))) + +(define-public r-ggstance + (package + (name "r-ggstance") + (version "0.3.1") + (source + (origin + (method url-fetch) + (uri (cran-uri "ggstance" version)) + (sha256 + (base32 "0v7f3xdaaridw6d4jvnsfwxmpjrasvx5vl555wsrn50aah17fkvh")))) + (build-system r-build-system) + (propagated-inputs + `(("r-ggplot2" ,r-ggplot2) + ("r-plyr" ,r-plyr) + ("r-rlang" ,r-rlang) + ("r-withr" ,r-withr))) + (home-page "https://cran.r-project.org/web/packages/ggstance/") + (synopsis "Horizontal and vertical versions of @code{r-ggplot2}") + (description + "This package is a @code{r-ggplot2} extension that provides flipped components: +@enumerate +@item horizontal versions of @code{r-ggplot2} stats and @code{r-ggplot2} geoms; +@item vertical versions of @code{r-ggplot2} positions. +@end enumerate") + (license license:gpl3))) -- 2.17.1