Skip to content

Commit c8040a9

Browse files
committed
CHANGE NAME TO NANIAR, AGAIN
1 parent becfc8b commit c8040a9

File tree

181 files changed

+5107
-840
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

181 files changed

+5107
-840
lines changed

DESCRIPTION

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1-
Package: narnia
1+
Package: naniar
22
Type: Package
33
Title: Data Structures, Summaries, and Visualisations for Missing Data
4-
Version: 0.0.9.9300
4+
Version: 0.0.9.9400
55
Author: Nicholas Tierney, Miles McBain, Di Cook,
66
Authors@R: c(
77
person("Nicholas", "Tierney", , "nicholas.tierney@gmail.com", c("aut", "cre")),
88
person("Di", "Cook", , "dicook@monash.edu", role = "aut"),
99
person("Miles", "McBain", , "miles.mcbain@gmail.com", role = "aut")
1010
)
1111
Description: Missing values are ubiquitous in data and need to be explored and
12-
handled in the initial stages of analysis. 'narnia' provides helpers for
12+
handled in the initial stages of analysis. 'naniar' provides helpers for
1313
exploring missing data dependencies with minimal deviation from the common
14-
workflow of 'ggplot2' and tidy data. 'narnia' builds data structures and
14+
workflow of 'ggplot2' and tidy data. 'naniar' builds data structures and
1515
functions that facilitate plotting of missing values and examination of
1616
imputations.
1717
License: MIT + file LICENSE
@@ -53,8 +53,8 @@ Collate:
5353
'data-riskfactors.R'
5454
'legend-draw.R'
5555
'geom-missing-point.R'
56-
'narnia-ggproto.R'
57-
'narnia-package.R'
56+
'naniar-ggproto.R'
57+
'naniar-package.R'
5858
'plotting.R'
5959
'replace_to_na.R'
6060
'shadow-shifters.R'
@@ -66,5 +66,5 @@ Collate:
6666
'tidy-miss-label.R'
6767
'tidy-miss-scalars.R'
6868
'utils.R'
69-
URL: https://github.com/njtierney/narnia
70-
BugReports: https://github.com/njtierney/narnia/issues
69+
URL: https://github.com/njtierney/naniar
70+
BugReports: https://github.com/njtierney/naniar/issues

NEWS.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# narnia 0.0.9.4000 (2017/07/24)
1+
# narnia 0.0.9.9400 (2017/07/24)
22

33
## new features
44

@@ -7,7 +7,7 @@ value from a variable to NA.
77

88
## breaking changes
99

10-
- changed `geom_missing_point()` to `geom_miss_point()`.
10+
- changed `geom_missing_point()` to `geom_miss_point()`, to keep consistent with the rest of the functions in `naniar`.
1111

1212
# narnia 0.0.9.9201 (2017/07/12)
1313

R/geom-missing-point.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@
8787

8888
}
8989

90-
#' @rdname narnia-ggproto
90+
#' @rdname naniar-ggproto
9191
#' @format NULL
9292
#' @usage NULL
9393
#' @export

R/legend-draw.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#' Key drawing functions
22
#'
33
#' Each Geom has an associated function that draws the key when the geom needs
4-
#' to be displayed in a legend. These are the options built into narnia.
4+
#' to be displayed in a legend. These are the options built into naniar.
55
#'
66
#' @return A grid grob.
77
#' @param data A single row data frame containing the scaled aesthetics to

R/naniar-ggproto.R

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#' @name naniar-ggproto
2+
#' @title naniar-ggroto
3+
#'
4+
#' @description These are the stat and geom overrides using ggproto from ggplot2 that make naniar work.
5+
#'
6+
NULL
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
#' narnia
1+
#' naniar
22
#'
3-
#' narnia is a package to make it easier to summarise and handle missing values
3+
#' naniar is a package to make it easier to summarise and handle missing values
44
#' in R. It strives to do this in a way that is as consistent with tidyverse
55
#' principles as possible.
66
#'
7-
#' @name narnia
7+
#' @name naniar
88
#' @docType package
99
#' @import ggplot2
1010
#' @import rlang

R/narnia-ggproto.R

Lines changed: 0 additions & 6 deletions
This file was deleted.

R/plotting.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# plotting functions for narnia
1+
# plotting functions for naniar
22

33

44
#' @importFrom visdat vis_miss

R/shadow-shifters.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ shadow_shift.character <- function(x, ...){
9393
false = x)
9494
}
9595
#
96-
# library(narnia)
96+
# library(naniar)
9797
#
9898
# riskfactors %>%
9999
# add_shadow_shift(vars = c("drink_average", "smoke_stop")) %>%

R/stat-missing-point.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ stat_miss_point <- function(mapping = NULL,
6464

6565
}
6666

67-
#' @rdname narnia-ggproto
67+
#' @rdname naniar-ggproto
6868
#' @export
6969
StatMissPoint <- ggproto("StatMissPoint", Stat,
7070
required_aes = c("x", "y"),

0 commit comments

Comments
 (0)