Skip to content

Commit 59c2212

Browse files
committed
update docs
1 parent c7ec656 commit 59c2212

File tree

3 files changed

+69
-3
lines changed

3 files changed

+69
-3
lines changed

NAMESPACE

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ S3method(filter,SummarizedExperiment)
1111
S3method(full_join,SummarizedExperiment)
1212
S3method(ggplot,SummarizedExperiment)
1313
S3method(group_by,SummarizedExperiment)
14+
S3method(group_split,SummarizedExperiment)
1415
S3method(inner_join,SummarizedExperiment)
1516
S3method(left_join,SummarizedExperiment)
1617
S3method(mutate,SummarizedExperiment)

R/dplyr_methods.R

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -871,11 +871,10 @@ pull.SummarizedExperiment <- function(.data, var=-1, name=NULL, ...) {
871871
#' @examples
872872
#' data(pasilla)
873873
#' pasilla |> group_split(condition)
874+
#' pasilla |> group_split(counts > 0)
875+
#' pasilla |> group_split(condition, counts > 0)
874876
#'
875877
#' @importFrom ellipsis check_dots_used
876-
#' @importFrom dplyr group_by
877-
#' @importFrom dplyr group_rows
878-
#' @importFrom dplyr group_split
879878
#' @export
880879
group_split.SummarizedExperiment <- function(.tbl, ..., .keep = TRUE) {
881880

man/group_split.Rd

Lines changed: 66 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)