-
Notifications
You must be signed in to change notification settings - Fork 418
Expand file tree
/
Copy pathpack.R
More file actions
146 lines (130 loc) · 5.16 KB
/
Copy pathpack.R
File metadata and controls
146 lines (130 loc) · 5.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
#' Pack and unpack
#'
#' @description
#' `r lifecycle::badge("maturing")`
#'
#' Packing and unpacking preserve the length of a data frame, changing its
#' width. `pack()` makes `df` narrow by collapsing a set of columns into a
#' single df-column. `unpack()` makes `data` wider by expanding df-columns
#' back out into individual columns.
#'
#' @details
#' Generally, unpacking is more useful than packing because it simplifies
#' a complex data structure. Currently, few functions work with df-cols,
#' and they are mostly a curiosity, but seem worth exploring further because
#' they mimic the nested column headers that are so popular in Excel.
#'
#' @param data,.data A data frame.
#' @param cols <[`tidy-select`][tidyr_tidy_select]> Column to unpack.
#' @param names_sep,.names_sep If `NULL`, the default, the names will be left
#' as is. In `pack()`, inner names will come from the former outer names;
#' in `unpack()`, the new outer names will come from the inner names.
#'
#' If a string, the inner and outer names will be used together. In `pack()`,
#' the names of the new outer columns will be formed by pasting together the
#' outer and the inner column names, separated by `names_sep`. In `unpack()`,
#' the new inner names will have the outer names (+ `names_sep`) automatically
#' stripped. This makes `names_sep` roughly symmetric between packing
#' and unpacking.
#' @param ... <[`tidy-select`][tidyr_tidy_select]> Columns to pack, specified
#' using name-variable pairs of the form `new_col = c(col1, col2, col3)`.
#' The right hand side can be any valid tidy select expression.
#' @export
#' @examples
#' # Packing =============================================================
#' # It's not currently clear why you would ever want to pack columns
#' # since few functions work with this sort of data.
#' df <- tibble(x1 = 1:3, x2 = 4:6, x3 = 7:9, y = 1:3)
#' df
#' df %>% pack(x = starts_with("x"))
#' df %>% pack(x = c(x1, x2, x3), y = y)
#'
#' # .names_sep allows you to strip off common prefixes; this
#' # acts as a natural inverse to name_sep in unpack()
#' iris %>%
#' as_tibble() %>%
#' pack(
#' Sepal = starts_with("Sepal"),
#' Petal = starts_with("Petal"),
#' .names_sep = "."
#' )
#'
#' # Unpacking ===========================================================
#' df <- tibble(
#' x = 1:3,
#' y = tibble(a = 1:3, b = 3:1),
#' z = tibble(X = c("a", "b", "c"), Y = runif(3), Z = c(TRUE, FALSE, NA))
#' )
#' df
#' df %>% unpack(y)
#' df %>% unpack(c(y, z))
#' df %>% unpack(c(y, z), names_sep = "_")
pack <- function(.data, ..., .names_sep = NULL) {
UseMethod("pack")
}
#' @export
pack.data.frame <- function(.data, ..., .names_sep = NULL) {
cols <- enquos(...)
if (any(names2(cols) == "")) {
abort("All elements of `...` must be named")
}
cols <- map(cols, ~ tidyselect::eval_select(.x, .data))
packed <- map(cols, ~ .data[.x])
if (!is.null(.names_sep)) {
packed <- imap(packed, strip_names, .names_sep)
}
# TODO: find a different approach that preserves order
asis <- setdiff(names(.data), unlist(map(cols, names)))
out <- vec_cbind(.data[asis], new_data_frame(packed, n = nrow(.data)))
reconstruct_tibble(.data, out)
}
#' @export
#' @rdname pack
#' @param names_repair Used to check that output data frame has valid
#' names. Must be one of the following options:
#'
#' * "minimal": no name repair or checks, beyond basic existence,
#' * "unique": make sure names are unique and not empty,
#' * "check_unique": (the default), no name repair, but check they are unique,
#' * "universal": make the names unique and syntactic
#' * a function: apply custom name repair.
#' * [tidyr_legacy]: use the name repair from tidyr 0.8.
#' * a formula: a purrr-style anonymous function (see [rlang::as_function()])
#'
#' See [vctrs::vec_as_names()] for more details on these terms and the
#' strategies used to enforce them.
unpack <- function(data, cols, ..., names_sep = NULL, names_repair = "check_unique") {
ellipsis::check_dots_used()
UseMethod("unpack")
}
#' @export
unpack.data.frame <- function(data, cols, ..., names_sep = NULL, names_repair = "check_unique") {
check_present(cols)
cols <- tidyselect::eval_select(enquo(cols), data)
new_cols <- map2(data[cols], names(cols), check_unpack, names_sep = names_sep)
data <- update_cols(data, new_cols)
out <- flatten_at(data, names(data) %in% names(cols))
if (has_name(formals(vec_as_names), "repair_arg")) {
names(out) <- vec_as_names(names(out), repair = names_repair, repair_arg = "names_repair")
} else {
names(out) <- vec_as_names(names(out), repair = names_repair)
}
out <- as_tibble(out, .name_repair = "minimal")
reconstruct_tibble(data, out)
}
check_unpack <- function(x, col, names_sep = NULL) {
if (!is.data.frame(x) && !is_empty(x)) {
abort(glue("`{col}` must be a data frame column"))
}
if (!is.null(names_sep)) {
names(x) <- paste0(col, names_sep, names(x))
}
x
}
strip_names <- function(df, base, names_sep) {
base <- paste0(base, names_sep)
names <- names(df)
has_prefix <- regexpr(base, names, fixed = TRUE) == 1L
names[has_prefix] <- substr(names[has_prefix], nchar(base) + 1, nchar(names[has_prefix]))
set_names(df, names)
}