mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-29 07:42:23 -05:00
gnu: Add r-sandwich.
* gnu/packages/cran.scm (r-sandwich): New variable.
This commit is contained in:
parent
69bb2d9966
commit
302db58552
1 changed files with 22 additions and 0 deletions
|
@ -6277,3 +6277,25 @@ (define-public r-aspi
|
||||||
"This package provides tools for the analysis and visualization of bilateral
|
"This package provides tools for the analysis and visualization of bilateral
|
||||||
asymmetry in parasitic infections.")
|
asymmetry in parasitic infections.")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
|
(define-public r-sandwich
|
||||||
|
(package
|
||||||
|
(name "r-sandwich")
|
||||||
|
(version "2.5-0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (cran-uri "sandwich" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"168kq5kk34xbhfsxsanard9zriyp6cw0s09ralzb57kk42pl9hbc"))))
|
||||||
|
(build-system r-build-system)
|
||||||
|
(propagated-inputs
|
||||||
|
`(("r-zoo" ,r-zoo)))
|
||||||
|
(home-page "https://cran.r-project.org/web/packages/sandwich/")
|
||||||
|
(synopsis "Robust Covariance Matrix Estimators")
|
||||||
|
(description
|
||||||
|
"This package provides model-robust standard error estimators for
|
||||||
|
cross-sectional, time series, clustered, panel, and longitudinal data.")
|
||||||
|
;; Either version of the license.
|
||||||
|
(license (list license:gpl2 license:gpl3))))
|
||||||
|
|
Loading…
Reference in a new issue