1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-05-27 03:21:49 +02:00

gnu: r-naniar: Move to (gnu packages cran).

* gnu/packages/statistics.scm (r-naniar): Move from here...
* gnu/packages/cran.scm (r-naniar): ...to here.

Change-Id: I1509b43a4e05335796cbd589a769d82166409687
This commit is contained in:
Ricardo Wurmus
2025-03-11 12:20:58 +01:00
parent b399717adc
commit d509af04c1
2 changed files with 42 additions and 41 deletions
+42
View File
@@ -19248,6 +19248,48 @@ implementation of an approximate nearest neighbor search using hierarchical
@acronym{NSW, Navigable Small World} graphs.")
(license license:asl2.0)))
(define-public r-naniar
(package
(name "r-naniar")
(version "1.1.0")
(source (origin
(method url-fetch)
(uri (cran-uri "naniar" version))
(sha256
(base32
"0i3gijr1l7hbcp75cyj26pxmm493lnvasl8aba9vv4w8lz1lck59"))))
(build-system r-build-system)
(propagated-inputs
(list r-cli
r-dplyr
r-forcats
r-ggplot2
r-glue
r-lifecycle
r-magrittr
r-norm
r-purrr
r-rlang
r-tibble
r-tidyr
r-upsetr
r-vctrs
r-viridis
r-visdat))
(native-inputs
(list r-knitr r-testthat))
(home-page "https://github.com/njtierney/naniar")
(synopsis
"Data structures, summaries, and visualisations for missing data")
(description
"Missing values are ubiquitous in data and need to be explored and
handled in the initial stages of analysis. The package provides data
structures and functions that facilitate the plotting of missing values and
examination of imputations. This allows missing data dependencies to be
explored with minimal deviation from the common work patterns of
@code{ggplot2} and tidy data.")
(license license:expat)))
(define-public r-nestedcv
(package
(name "r-nestedcv")