aboutsummaryrefslogtreecommitdiff
path: root/R/pkg/R/group.R
diff options
context:
space:
mode:
Diffstat (limited to 'R/pkg/R/group.R')
-rw-r--r--R/pkg/R/group.R4
1 files changed, 2 insertions, 2 deletions
diff --git a/R/pkg/R/group.R b/R/pkg/R/group.R
index 576ac72f40..4cab1a69f6 100644
--- a/R/pkg/R/group.R
+++ b/R/pkg/R/group.R
@@ -102,7 +102,7 @@ setMethod("agg",
}
}
jcols <- lapply(cols, function(c) { c@jc })
- sdf <- callJMethod(x@sgd, "agg", jcols[[1]], listToSeq(jcols[-1]))
+ sdf <- callJMethod(x@sgd, "agg", jcols[[1]], jcols[-1])
} else {
stop("agg can only support Column or character")
}
@@ -124,7 +124,7 @@ createMethod <- function(name) {
setMethod(name,
signature(x = "GroupedData"),
function(x, ...) {
- sdf <- callJMethod(x@sgd, name, toSeq(...))
+ sdf <- callJMethod(x@sgd, name, list(...))
dataFrame(sdf)
})
}