From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:57278) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fzhxW-0000iN-Op for guix-patches@gnu.org; Tue, 11 Sep 2018 08:40:02 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fzhnx-0001uS-T1 for guix-patches@gnu.org; Tue, 11 Sep 2018 08:30:10 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:60267) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fzhnx-0001uG-OK for guix-patches@gnu.org; Tue, 11 Sep 2018 08:30:05 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fzhnv-00088z-Q0 for guix-patches@gnu.org; Tue, 11 Sep 2018 08:30:05 -0400 Subject: [bug#32697] [PATCH 4/4] gnu: Add r-acc. Resent-Message-ID: From: pimi Date: Tue, 11 Sep 2018 14:28:47 +0200 Message-ID: <20180911122847.11246-4-madalinionel.patrascu@mdc-berlin.de> In-Reply-To: <20180911122847.11246-1-madalinionel.patrascu@mdc-berlin.de> References: <20180911122847.11246-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: 32697@debbugs.gnu.org Cc: pimi gnu/packages/cran.scm (r-acc): New variable. --- gnu/packages/cran.scm | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index df320c229..7621b3bb6 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -5764,3 +5764,36 @@ on user-defined cut-points of accelerometer counts. It also supports importing ActiGraph (AGD) files with @code{readActigraph} and @code{queryActigraph} functions.") (license license:gpl3+))) + +(define-public r-acc + (package + (name "r-acc") + (version "1.3.3") + (source + (origin + (method url-fetch) + (uri (cran-uri "acc" version)) + (sha256 + (base32 "1ii2vm47djxbixa75h690q1s2f9m9x6i8nkygik93j6dayr6kr1m")))) + (build-system r-build-system) + (propagated-inputs + `(("r-circlize" ,r-circlize) + ("r-dbi" ,r-dbi) + ("r-ggplot2" ,r-ggplot2) + ("r-iterators" ,r-iterators) + ("r-mhsmm" ,r-mhsmm) + ("r-nleqslv" ,r-nleqslv) + ("r-physicalactivity" ,r-physicalactivity) + ("r-plyr" ,r-plyr) + ("r-r-utils" ,r-r-utils) + ("r-rcpp" ,r-rcpp) + ("r-rcpparmadillo" ,r-rcpparmadillo) + ("r-rsqlite" ,r-rsqlite) + ("r-zoo" ,r-zoo))) + (home-page "https://cran.r-project.org/web/packages/acc/") + (synopsis "Exploring accelerometer data") + (description + "This package processes accelerometer data from uni-axial and tri-axial devices +and generates data summaries. Also, includes functions to plot, analyze, and +simulate accelerometer data.") + (license license:gpl2+))) -- 2.17.1