如何取消選擇自編函數的參數...
中給出的列。 (我還需要選擇在另一點列,所以只是在-
指定...
列不解決我的問題。)dplyr:取消選擇由
任何soltions是apreciated,select
-helpers,操縱quosures
或表達式,...
# very simple example data
test <- data.frame(a=1:3, b=1:3, c=1:3)
# function skeleton
testfun <- function(x, ...){
y <- select(x, ...)
z <- select(x, -...) # does of course not work like this
return(list(y, z)) # just as an example
}
# calling the function to select different columns
testfun(test, a)
testfun(test, a, b)
我會使用'select_'並傳入一個字符(矢量)。 –