mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 23:06:59 +01:00
gnu: Add r-lmtest.
* gnu/packages/cran.scm (r-lmtest): New variable.
This commit is contained in:
parent
58db98c9f2
commit
062b6dbd25
1 changed files with 26 additions and 0 deletions
|
@ -22,6 +22,7 @@ (define-module (gnu packages cran)
|
||||||
#:use-module (guix download)
|
#:use-module (guix download)
|
||||||
#:use-module (guix utils)
|
#:use-module (guix utils)
|
||||||
#:use-module (guix build-system r)
|
#:use-module (guix build-system r)
|
||||||
|
#:use-module (gnu packages gcc)
|
||||||
#:use-module (gnu packages perl)
|
#:use-module (gnu packages perl)
|
||||||
#:use-module (gnu packages statistics)
|
#:use-module (gnu packages statistics)
|
||||||
#:use-module (gnu packages web))
|
#:use-module (gnu packages web))
|
||||||
|
@ -663,3 +664,28 @@ (define-public r-extremes
|
||||||
extreme values of a process of interest; be they block maxima over long blocks
|
extreme values of a process of interest; be they block maxima over long blocks
|
||||||
or excesses over a high threshold.")
|
or excesses over a high threshold.")
|
||||||
(license license:gpl2+)))
|
(license license:gpl2+)))
|
||||||
|
|
||||||
|
(define-public r-lmtest
|
||||||
|
(package
|
||||||
|
(name "r-lmtest")
|
||||||
|
(version "0.9-35")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (cran-uri "lmtest" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"107br1l7p52wxvazs031f4h5ryply97qywg9dzrkw4ydnvqq4j9g"))))
|
||||||
|
(build-system r-build-system)
|
||||||
|
(propagated-inputs
|
||||||
|
`(("r-zoo" ,r-zoo)))
|
||||||
|
(native-inputs
|
||||||
|
`(("gfortran" ,gfortran)))
|
||||||
|
(home-page "http://cran.r-project.org/web/packages/lmtest")
|
||||||
|
(synopsis "Testing linear regression models")
|
||||||
|
(description
|
||||||
|
"This package provides a collection of tests, data sets, and examples for
|
||||||
|
diagnostic checking in linear regression models. Furthermore, some generic
|
||||||
|
tools for inference in parametric models are provided.")
|
||||||
|
;; Either version is okay
|
||||||
|
(license (list license:gpl2 license:gpl3))))
|
||||||
|
|
Loading…
Reference in a new issue