guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/03: gnu: Add r-rbenchmark.


From: Leo Famulari
Subject: 01/03: gnu: Add r-rbenchmark.
Date: Tue, 2 Oct 2018 15:46:41 -0400 (EDT)

lfam pushed a commit to branch master
in repository guix.

commit f6890c08912c7b2a2b7f6c1cdeda412ff73e0b1d
Author: pimi <address@hidden>
Date:   Tue Sep 11 15:18:25 2018 +0200

    gnu: Add r-rbenchmark.
    
    gnu/packages/cran.scm (r-rbenchmark): New variable.
    
    Signed-off-by: Leo Famulari <address@hidden>
---
 gnu/packages/cran.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 186a52a..76c9c73 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -6057,3 +6057,28 @@ on user-defined cut-points of accelerometer counts.
 and generates data summaries.  Also, includes functions to plot, analyze, and
 simulate accelerometer data.")
     (license license:gpl2+)))
+
+(define-public r-rbenchmark
+  (package
+    (name "r-rbenchmark")
+    (version "1.0.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "rbenchmark" version))
+       (sha256
+        (base32 "010fn3qwnk2k411cbqyvra1d12c3bhhl3spzm8kxffmirj4p2al9"))))
+    (build-system r-build-system)
+    (home-page "https://cran.r-project.org/web/packages/rbenchmark/";)
+    (synopsis "Benchmarking routine for R")
+    (description
+     "This @code{r-rbenchmark} package is inspired by the Perl module 
Benchmark,
+and is intended to facilitate benchmarking of arbitrary R code.  The library
+consists of just one function, benchmark, which is a simple wrapper around
+system.time.  Given a specification of the benchmarking process (counts of
+replications, evaluation environment) and an arbitrary number of expressions,
+benchmark evaluates each of the expressions in the specified environment,
+replicating the evaluation as many times as specified, and returning the 
results
+conveniently wrapped into a data frame.")
+    (license license:gpl2+)))
+



reply via email to

[Prev in Thread] Current Thread [Next in Thread]