mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 22:38:07 -05:00
gnu: Add r-circular.
* gnu/packages/cran.scm (r-circular): New variable.
This commit is contained in:
parent
08bf097a0b
commit
3cef715a46
1 changed files with 25 additions and 0 deletions
|
@ -7683,3 +7683,28 @@ (define-public r-arm
|
||||||
Data Analysis Using Regression and Multilevel/Hierarchical Models, Cambridge
|
Data Analysis Using Regression and Multilevel/Hierarchical Models, Cambridge
|
||||||
University Press, 2007.")
|
University Press, 2007.")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
|
(define-public r-circular
|
||||||
|
(package
|
||||||
|
(name "r-circular")
|
||||||
|
(version "0.4-93")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (cran-uri "circular" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0hki85rs8wc5950pjaw28q54rly2napfbcrx3pchlfap6wwy5kkn"))))
|
||||||
|
(build-system r-build-system)
|
||||||
|
(propagated-inputs
|
||||||
|
`(("r-boot" ,r-boot)
|
||||||
|
("r-mvtnorm" ,r-mvtnorm)))
|
||||||
|
(native-inputs
|
||||||
|
`(("gfortran" ,gfortran)))
|
||||||
|
(home-page "https://cran.r-project.org/web/packages/circular/")
|
||||||
|
(synopsis "Circular statistics")
|
||||||
|
(description
|
||||||
|
"This package provides tools for circular statistics, from \"Topics in
|
||||||
|
circular Statistics\" (2001) S. Rao Jammalamadaka and A. SenGupta, World
|
||||||
|
Scientific.")
|
||||||
|
(license license:gpl2+)))
|
||||||
|
|
Loading…
Reference in a new issue