Ich versuche, einige parametrisierte dplyr
Manipulationen zu tun. Das einfachste reproduzierbare Beispiel der Wurzel des Problems zum Ausdruck bringt, ist dies:Wie übergeben '...' Argument in eine interp() Formel innerhalb von Lazyeval
# Data
test <- data.frame(group = rep(1:5, each = 2),
value = as.integer(c(NA, NA, 2, 3, 3, 5, 7, 8, 9, 0)))
> test
group value
1 1 NA
2 1 NA
3 2 2
4 2 3
5 3 3
6 3 5
7 4 7
8 4 8
9 5 9
10 5 0
# Summarisation example, this is what I'd like to parametrise
# so that I can pass in functions and grouping variables dynamically
test.summary <- test %>%
group_by(group) %>%
summarise(group.mean = mean(value, na.rm = TRUE))
> test.summary
Source: local data frame [5 x 2]
group group.mean
<int> <dbl>
1 1 NaN
2 2 2.5
3 3 4.0 # Correct results
4 4 7.5
5 5 4.5
Dies ist, wie ich allein weit gekommen
# This works fine, but notice there's no 'na.rm = TRUE' passed in
doSummary <- function(d_in = data, func = 'mean', by = 'group') {
# d_in: data in
# func: required function for summarising
# by: the variable to group by
# NOTE: the summary is always for the 'value' column in any given dataframe
# Operations for summarise_
ops <- interp(~f(value),
.values = list(f = as.name(func),
value = as.name('value')))
d_out <- d_in %>%
group_by_(by) %>%
summarise_(.dots = setNames(ops, func))
}
> doSummary(test)
Source: local data frame [5 x 2]
group mean(value)
<int> <dbl>
1 1 NA
2 2 2.5
3 3 4.0
4 4 7.5
5 5 4.5
Der Versuch, mit dem ‚na.rm‘ Parameter
# When I try passing in the 'na.rm = T' parameter it breaks
doSummary.na <- function(d_in = data, func = 'mean', by = 'group') {
# Doesn't work
ops <- interp(~do.call(f, args),
.values = list(f = func,
args = list(as.name('value'), na.rm = TRUE)))
d_out <- d_in %>%
group_by_(by) %>%
summarise_(.dots = setNames(ops, func))
}
> doSummary.na(test)
Error: object 'value' not found
Vielen Dank für Ihre Hilfe!
Und 'interp' kommt von ...? – nicola
@pfabri Das Schlüssel-Bit der fehlenden Informationen ist, dass 'interp()' aus Paket lazyeval ist, gibt es andere Funktionen mit dem gleichen Namen, zum Beispiel in akima – Miff
@pfabri Ich kann nicht sagen, ob das folgende in Ihrem Fall funktionieren könnte , obwohl es nicht direkt Ihre Frage beantwortet 'interp (~ do.call (f, args), .values = Liste (f =' mean ', args = Liste (na.rm = TRUE)))'. – Miff