Skip to content

Commit

Permalink
Fixes #645.
Browse files Browse the repository at this point in the history
  • Loading branch information
SebKrantz committed Mar 4, 2025
1 parent 8601ea4 commit 3a7f86b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -745,6 +745,7 @@ importFrom("stats", "as.formula", "complete.cases", "cor", "cov", "var", "pt",
S3method('[[', GRP_df)
S3method('[<-', GRP_df)
S3method('[[<-', GRP_df)
S3method('names<-', GRP_df)
S3method('[', indexed_series)
S3method(Math, indexed_series)
S3method(Ops, indexed_series)
Expand Down
1 change: 1 addition & 0 deletions R/GRP.R
Original file line number Diff line number Diff line change
Expand Up @@ -502,6 +502,7 @@ print.invisible <- function(x, ...) cat("")
`[[.GRP_df` <- function(x, ...) UseMethod("[[", fungroup(x)) # function(x, ..., exact = TRUE) .subset2(x, ..., exact = exact)
`[<-.GRP_df` <- function(x, ..., value) UseMethod("[<-", fungroup(x))
`[[<-.GRP_df` <- function(x, ..., value) UseMethod("[[<-", fungroup(x))
`names<-.GRP_df` <- function(x, value) `oldClass<-`(`names<-`(unclass(x), value), oldClass(x))

# Produce errors...
# print_GRP_df_core <- function(x) {
Expand Down

0 comments on commit 3a7f86b

Please sign in to comment.