Skip to content

Commit

Permalink
Merge pull request #807 from markfairbanks/internal-cleanup
Browse files Browse the repository at this point in the history
Some internal cleanup
  • Loading branch information
markfairbanks authored Apr 1, 2024
2 parents ad1d195 + b4a45a3 commit 98499f9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
4 changes: 0 additions & 4 deletions R/nest_by.R
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,3 @@ nest_by.data.frame <- function(.df, ..., .key = "data", .keep = FALSE) {
nest_by(.df, ..., .key = .key, .keep = .keep)
}

tt_nest_by <- function(.df, ..., .key = "data", .keep = FALSE) {

}

6 changes: 3 additions & 3 deletions R/select.R
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,12 @@ select <- function(.df, ...) {

#' @export
select.tidytable <- function(.df, ...) {
tt_select(.df, ...)
.select(.df, ...)
}

#' @export
select.grouped_tt <- function(.df, ...) {
tt_select(.df, ..., group_cols())
.select(.df, ..., group_cols())
}

#' @export
Expand All @@ -55,7 +55,7 @@ select.data.frame <- function(.df, ...) {
select(.df, ...)
}

tt_select <- function(.df, ...) {
.select <- function(.df, ...) {
locs <- tidyselect_locs(.df, ...)

out <- new_data_frame(.df)[locs]
Expand Down

0 comments on commit 98499f9

Please sign in to comment.