mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-03 00:26:33 +01:00
gnu: Add r-biglm.
* gnu/packages/cran.scm (r-biglm): New variable. Co-authored-by: Ricardo Wurmus <rekado@elephly.net>
This commit is contained in:
parent
f0f5f01197
commit
242c3e9300
1 changed files with 23 additions and 0 deletions
|
@ -1165,6 +1165,29 @@ (define-public r-bezier
|
||||||
degree elevation and curve fitting.")
|
degree elevation and curve fitting.")
|
||||||
(license license:gpl2+)))
|
(license license:gpl2+)))
|
||||||
|
|
||||||
|
(define-public r-biglm
|
||||||
|
(package
|
||||||
|
(name "r-biglm")
|
||||||
|
(version "0.9-2.1")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (cran-uri "biglm" version))
|
||||||
|
(sha256
|
||||||
|
(base32 "0iy9xr2bq42wlizgwlz7w5kh9206yqkw9h2cr6mcsmizgjg3rkvd"))))
|
||||||
|
(properties `((upstream-name . "biglm")))
|
||||||
|
(build-system r-build-system)
|
||||||
|
(propagated-inputs (list r-dbi))
|
||||||
|
(native-inputs (list gfortran))
|
||||||
|
(home-page "https://cran.r-project.org/package=biglm")
|
||||||
|
(synopsis "Bounded memory linear and generalized linear models")
|
||||||
|
(description "The biglm package lets you create a linear model object that
|
||||||
|
uses only code{p^2} memory for @code{p} variables. It can be updated with
|
||||||
|
more data using @code{update}. This allows linear regression on data sets
|
||||||
|
larger than memory.")
|
||||||
|
;; Expanded from GPL
|
||||||
|
(license (list license:gpl2+ license:gpl3+))))
|
||||||
|
|
||||||
(define-public r-bwstest
|
(define-public r-bwstest
|
||||||
(package
|
(package
|
||||||
(name "r-bwstest")
|
(name "r-bwstest")
|
||||||
|
|
Loading…
Reference in a new issue