From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ricardo Wurmus Subject: [PATCH] Add ztable. Date: Thu, 31 Mar 2016 15:51:18 +0200 Message-ID: Mime-Version: 1.0 Content-Type: text/x-patch Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:41547) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ald0b-000332-Me for guix-devel@gnu.org; Thu, 31 Mar 2016 09:51:38 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ald0W-0003b5-U6 for guix-devel@gnu.org; Thu, 31 Mar 2016 09:51:37 -0400 Received: from sinope.bbbm.mdc-berlin.de ([141.80.25.23]:45389) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ald0W-0003Zr-Ki for guix-devel@gnu.org; Thu, 31 Mar 2016 09:51:32 -0400 Received: from localhost (localhost [127.0.0.1]) by sinope.bbbm.mdc-berlin.de (Postfix) with ESMTP id 57EED2808EB for ; Thu, 31 Mar 2016 15:51:30 +0200 (CEST) Received: from sinope.bbbm.mdc-berlin.de ([127.0.0.1]) by localhost (sinope.bbbm.mdc-berlin.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Vm1BXTQAoxmc for ; Thu, 31 Mar 2016 15:51:24 +0200 (CEST) Received: from HTCATWO.mdc-berlin.net (puck.citx.mdc-berlin.de [141.80.36.101]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by sinope.bbbm.mdc-berlin.de (Postfix) with ESMTPS for ; Thu, 31 Mar 2016 15:51:24 +0200 (CEST) Content-Disposition: inline; filename="0001-gnu-Add-r-ztable.patch" List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel >From 48bb548bf2a3c009eed6cf3b4a13b92da28d3b3b Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Fri, 18 Mar 2016 12:14:32 +0100 Subject: [PATCH] gnu: Add r-ztable. * gnu/packages/statistics.scm (r-ztable): New variable. --- gnu/packages/statistics.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index 1b114b3..0c6c017 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -2046,3 +2046,24 @@ directly from R. Once uploaded to a plotly account, plotly graphs (and the data behind them) can be viewed and modified in a web browser.") (license license:x11))) + +(define-public r-ztable + (package + (name "r-ztable") + (version "0.1.5") + (source (origin + (method url-fetch) + (uri (cran-uri "ztable" version)) + (sha256 + (base32 + "1jfqnqy9544gfvz3bsb48v4177nwp4b4n9l2743asq8sbq305b5r")))) + (build-system r-build-system) + (home-page "http://cran.r-project.org/web/packages/ztable") + (synopsis "Zebra-striped tables in LaTeX and HTML formats for R") + (description + "This package provides functions to make zebra-striped tables (tables +with alternating row colors) in LaTeX and HTML formats easily from +@code{data.frame}, @code{matrix}, @code{lm}, @code{aov}, @code{anova}, +@code{glm}, @code{coxph}, @code{nls}, @code{fitdistr}, @code{mytable} and +@code{cbind.mytable} objects.") + (license license:gpl2+))) -- 2.1.0