mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: Add r-acss.
* gnu/packages/cran.scm (r-acss): New variable.
This commit is contained in:
parent
07d958fe0e
commit
0ea0b2dd46
1 changed files with 29 additions and 0 deletions
|
@ -17724,3 +17724,32 @@ (define-public r-acss-data
|
||||||
4, 5, 6, and 9 symbols. The complexity of the string corresponds to the
|
4, 5, 6, and 9 symbols. The complexity of the string corresponds to the
|
||||||
distribution of the halting states.")
|
distribution of the halting states.")
|
||||||
(license license:gpl2+)))
|
(license license:gpl2+)))
|
||||||
|
|
||||||
|
(define-public r-acss
|
||||||
|
(package
|
||||||
|
(name "r-acss")
|
||||||
|
(version "0.2-5")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (cran-uri "acss" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0cqa60544f58l5qd7h6xmsir40b9hqnq6pqgd5hfx2j2l5n7qhmk"))))
|
||||||
|
(properties `((upstream-name . "acss")))
|
||||||
|
(build-system r-build-system)
|
||||||
|
(propagated-inputs
|
||||||
|
`(("r-acss-data" ,r-acss-data)
|
||||||
|
("r-zoo" ,r-zoo)))
|
||||||
|
(home-page "http://complexitycalculator.com/methodology.html")
|
||||||
|
(synopsis "Algorithmic complexity for short strings")
|
||||||
|
(description
|
||||||
|
"The main purpose of this package is to provide the algorithmic
|
||||||
|
complexity for short strings, an approximation of the Kolmogorov Complexity of
|
||||||
|
a short string using the coding theorem method. While the database containing
|
||||||
|
the complexity is provided in the data only package @code{acss.data}, this
|
||||||
|
package provides functions accessing the data such as @code{prob_random}
|
||||||
|
returning the posterior probability that a given string was produced by a
|
||||||
|
random process. In addition, two traditional (but problematic) measures of
|
||||||
|
complexity are also provided: entropy and change complexity.")
|
||||||
|
(license license:gpl2+)))
|
||||||
|
|
Loading…
Reference in a new issue