Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Listen von Vektoren als Übergabe #5

Open
phainom opened this issue Dec 14, 2017 · 0 comments
Open

Listen von Vektoren als Übergabe #5

phainom opened this issue Dec 14, 2017 · 0 comments

Comments

@phainom
Copy link

phainom commented Dec 14, 2017

Featurerequest:

Im Moment ist es möglich, Vektoren für den Bezeichner zu übergeben:

mutar(data.frame(x = c(1, 2), y = c(3, 4)), .nMean ~ mean(.n) | c("x", "y"))

Ebenso ist es möglich, für unterschiedliche Bezeichner eine Liste anzufertigen:

mutar(data.frame(x = c(1, 2), y = c(3, 4)), new ~ .x + .y | list(.x = "x", .y = "y"))

Es ist jedoch nicht möglich, eine Liste an Vektoren zu übergeben.

In dem Fall würde ich erwarten, dass er die Vektoren im Gleichschritt durchgeht und die passenden Operationen durchführt.

res <- data.frame(A.x = 1:3, B.x = 1:3, A.y = - (1:3), B.y = -(1:3))
na = c("A", "B")
mutar(res, .tTotal ~ .x + .y | list(.t = na, .x = paste0(na, ".x"), .y = paste0(na, ".y")))

Hier würde ich zwei zusätzliche Nullspalten erwarten, nämlich ATotal und BTotal. Tatsächlich bekomme ich eine Spalte .tTotal mit Nullen.

Ich weiß nicht ob der Featurerequest so Sinn macht, weil hier implizit Voraussetzungen an die Listenstruktur gestellt werden, nämlich dass die Vektoren gleiche Länge haben.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant