mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 05:18:07 -05:00
gnu: r-txtplot: Move to (gnu packages cran).
* gnu/packages/statistics.scm (r-txtplot): Move from here... * gnu/packages/cran.scm (r-txtplot): ...to here.
This commit is contained in:
parent
f3640e7395
commit
dcc7fad001
2 changed files with 21 additions and 20 deletions
|
@ -14,6 +14,7 @@
|
|||
;;; Copyright © 2018 Laura Lazzati <laura.lazzati.15@gmail.com>
|
||||
;;; Copyright © 2018 Leo Famulari <leo@famulari.name>
|
||||
;;; Copyright © 2018 Marius Bakke <mbakke@fastmail.com>
|
||||
;;; Copyright © 2018 Eric Brown <brown@fastmail.com>
|
||||
;;; Copyright © 2018, 2019 Brett Gilio <brettg@posteo.net>
|
||||
;;; Copyright © 2019 Nicolò Balzarotti <anothersms@gmail.com>
|
||||
;;; Copyright © 2019 Wiktor Żelazny <wzelazny@vurv.cz>
|
||||
|
@ -15830,3 +15831,23 @@ (define-public r-subplex
|
|||
subspaces. The method is well suited for optimizing objective functions that
|
||||
are noisy or are discontinuous at the solution.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public r-txtplot
|
||||
(package
|
||||
(name "r-txtplot")
|
||||
(version "1.0-3")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (cran-uri "txtplot" version))
|
||||
(sha256
|
||||
(base32
|
||||
"1949ab1bzvysdb79g8x1gaknj0ih3d6g63pv9512h5m5l3a6c31h"))))
|
||||
(build-system r-build-system)
|
||||
(home-page "https://cran.r-project.org/web/packages/txtplot/")
|
||||
(synopsis "Text-based plotting")
|
||||
(description "This package provides functions to produce rudimentary ASCII
|
||||
graphics directly in the terminal window. This package provides a basic
|
||||
plotting function (and equivalents of curve, density, acf and barplot) as well
|
||||
as a boxplot function.")
|
||||
(license license:lgpl3+)))
|
||||
|
|
|
@ -5710,26 +5710,6 @@ (define-public r-colorout
|
|||
to any arbitrary string. In this case, it is up to you to set valid values.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public r-txtplot
|
||||
(package
|
||||
(name "r-txtplot")
|
||||
(version "1.0-3")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (cran-uri "txtplot" version))
|
||||
(sha256
|
||||
(base32
|
||||
"1949ab1bzvysdb79g8x1gaknj0ih3d6g63pv9512h5m5l3a6c31h"))))
|
||||
(build-system r-build-system)
|
||||
(home-page "https://cran.r-project.org/web/packages/txtplot/")
|
||||
(synopsis "Text-based plotting")
|
||||
(description "This package provides functions to produce rudimentary ASCII
|
||||
graphics directly in the terminal window. This package provides a basic
|
||||
plotting function (and equivalents of curve, density, acf and barplot) as well
|
||||
as a boxplot function.")
|
||||
(license license:lgpl3+)))
|
||||
|
||||
(define-public python-rpy2
|
||||
;; We need to take this changeset instead of the RELEASE_3_0_4 tag, because
|
||||
;; it fixes a regression when using ggplot 3.2.0.
|
||||
|
|
Loading…
Reference in a new issue