Skip to content
This repository has been archived by the owner on Nov 19, 2022. It is now read-only.

Commit

Permalink
bumping current cran dplyr version
Browse files Browse the repository at this point in the history
  • Loading branch information
IndrajeetPatil committed Mar 15, 2019
1 parent 1cd3044 commit b15d1d4
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Expand Up @@ -25,7 +25,7 @@ Depends:
Imports:
broom (>= 0.5.1),
broom.mixed (>= 0.2.4),
dplyr (>= 0.8.0),
dplyr (>= 0.8.0.1),
magrittr (>= 1.5),
rlang (>= 0.3.1)
Suggests:
Expand Down
2 changes: 1 addition & 1 deletion R/grouped_augment.R
Expand Up @@ -63,7 +63,7 @@ grouped_augment <- function(data,
}

# dataframe with grouped analysis results
if (utils::packageVersion("dplyr") > "0.8.0") {
if (utils::packageVersion("dplyr") > "0.8.0.1") {
df_results <- data %>%
dplyr::group_by(.data = ., !!!grouping.vars, .drop = TRUE) %>%
dplyr::group_modify(.tbl = ., .f = augment_group, keep = TRUE) %>%
Expand Down
2 changes: 1 addition & 1 deletion R/grouped_glance.R
Expand Up @@ -62,7 +62,7 @@ grouped_glance <- function(data,
}

# dataframe with grouped analysis results
if (utils::packageVersion("dplyr") > "0.8.0") {
if (utils::packageVersion("dplyr") > "0.8.0.1") {
df_results <- data %>%
dplyr::group_by(.data = ., !!!grouping.vars, .drop = TRUE) %>%
dplyr::group_modify(.tbl = ., .f = glance_group, keep = TRUE) %>%
Expand Down
2 changes: 1 addition & 1 deletion R/grouped_tidy.R
Expand Up @@ -68,7 +68,7 @@ grouped_tidy <- function(data,
}

# dataframe with grouped analysis results
if (utils::packageVersion("dplyr") > "0.8.0") {
if (utils::packageVersion("dplyr") > "0.8.0.1") {
df_results <- data %>%
dplyr::group_by(.data = ., !!!grouping.vars, .drop = TRUE) %>%
dplyr::group_modify(.tbl = ., .f = tidy_group, keep = TRUE) %>%
Expand Down
2 changes: 1 addition & 1 deletion codemeta.json
Expand Up @@ -228,7 +228,7 @@
"@type": "SoftwareApplication",
"identifier": "dplyr",
"name": "dplyr",
"version": ">= 0.8.0",
"version": ">= 0.8.0.1",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
Expand Down

0 comments on commit b15d1d4

Please sign in to comment.