Функции и проблемы с `View()`
Кодовый блок № 1 и № 2 идентичны, за исключением строки № 14. Кодовый блок № 1 использует print()
Блок вызова и кода № 2 использует View()
вызов. Кодовый блок № 1 работает нормально. Код блока № 2 выдает ошибку "Error in FUN(X[[i]], ...) : object 'cal.date' not found"
, Зачем?
1
library(tidyverse)
set.seed(1)
graph.data <- tibble(cal.date = as.Date(40100:40129, origin = "1899-12-30"),
random_num = rnorm(30, 8, 5))
child_function <- function(df, variable, hor.line = 6) {
variable <- enquo(variable)
df <- df %>% mutate(mutation = 2 * !!variable, horizontal.line = hor.line)
}
parent_function <- function(df, date, variable, hor.line = 6) {
date <- enquo(date)
variable <- enquo(variable)
df <- df %>% child_function(!!variable, hor.line) %>% print() # LINE 14
p <- ggplot(df, aes(!!date, mutation)) +
geom_point() +
geom_hline(aes(yintercept = hor.line))
p
}
parent_function(graph.data, date = cal.date, variable = random_num, hor.line = 8)
2
library(tidyverse)
set.seed(1)
graph.data <- tibble(cal.date = as.Date(40100:40129, origin = "1899-12-30"),
random_num = rnorm(30, 8, 5))
child_function <- function(df, variable, hor.line = 6) {
variable <- enquo(variable)
df <- df %>% mutate(mutation = 2 * !!variable, horizontal.line = hor.line)
}
parent_function <- function(df, date, variable, hor.line = 6) {
date <- enquo(date)
variable <- enquo(variable)
df <- df %>% child_function(!!variable, hor.line) %>% View() # LINE 14
p <- ggplot(df, aes(!!date, mutation)) +
geom_point() +
geom_hline(aes(yintercept = hor.line))
p
}
parent_function(graph.data, date = cal.date, variable = random_num, hor.line = 8)
1 ответ
Решение
View()
является побочной функцией и ничего не возвращает.
использование %T>%
от magrittr
пакет вместо %>%
для вашего второго случая.
View()
заканчивает трубу так, что вам захочется иметь T pipe
вместо. Я думаю, что вы можете увидеть это более четко, как это
df %>% child_function(!!variable, hor.line) %>% View() -> df
против
df %>% child_function(!!variable, hor.line) %T>% View() -> df