[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
07/07: gnu: Add r-assertable.
From: |
guix-commits |
Subject: |
07/07: gnu: Add r-assertable. |
Date: |
Wed, 25 Sep 2019 09:49:55 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit 195854a50ce8e9abe15db24b4808f78fe52ce620
Author: Wiktor Żelazny <address@hidden>
Date: Mon Sep 16 18:18:06 2019 +0200
gnu: Add r-assertable.
* gnu/packages/cran.scm (r-assertable): New variable.
Signed-off-by: Ludovic Courtès <address@hidden>
---
gnu/packages/cran.scm | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index cb0be4a..89a581c 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -15610,3 +15610,30 @@ deprecated, and defunct). It makes it easy to insert
badges corresponding to
these stages in your documentation. Usage of deprecated functions are
signalled with increasing levels of non-invasive verbosity.")
(license license:gpl3)))
+
+(define-public r-assertable
+ (package
+ (name "r-assertable")
+ (version "0.2.6")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (cran-uri "assertable" version))
+ (sha256
+ (base32
+ "0jjd6ylh26fykzzv1q2lbajzfj07lyxwb3b3xmr2zdg2fp5b2w4c"))))
+ (build-system r-build-system)
+ (propagated-inputs
+ `(("r-data-table" ,r-data-table)))
+ (home-page "https://cran.r-project.org/web/packages/assertable/")
+ (synopsis "Verbose assertions for tabular data (data.frames and
data.tables)")
+ (description "This package provides simple, flexible assertions on
+data.frame or data.table objects with verbose output for vetting. While other
+assertion packages apply towards more general use-cases, @code{assertable} is
+tailored towards tabular data. It includes functions to check variable names
+and values, whether the dataset contains all combinations of a given set of
+unique identifiers, and whether it is a certain length. In addition,
+@code{assertable} includes utility functions to check the existence of target
+files and to efficiently import multiple tabular data files into one
+data.table.")
+ (license license:gpl3)))
- branch master updated (dd2a832 -> 195854a), guix-commits, 2019/09/25
- 01/07: colors: Add 'dim'., guix-commits, 2019/09/25
- 02/07: pull: Dim the commit ID when displaying news., guix-commits, 2019/09/25
- 04/07: gnu: emacs-exwm: Update to 0.23., guix-commits, 2019/09/25
- 05/07: doc: Fix installing Guix in VM, guix-commits, 2019/09/25
- 06/07: doc: Avoid @verbatiminclude for Scheme snippets., guix-commits, 2019/09/25
- 03/07: doc: Support paren matching via CSS hover., guix-commits, 2019/09/25
- 07/07: gnu: Add r-assertable.,
guix-commits <=