Skip to content

Commit

Permalink
Small fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
masurp committed May 28, 2024
1 parent 690f876 commit 92e9f65
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion R/generics.r
Original file line number Diff line number Diff line change
Expand Up @@ -923,7 +923,7 @@ summary.specr.boot <- function(x, group = NULL, ...) {
group_by(grp = str_c('Column', rep(1:2, length.out = n()))) %>%
mutate(rn = row_number()) %>%
ungroup %>%
pivot_wider(names_from = grp, values_from = value) %>%
tidyr::pivot_wider(names_from = grp, values_from = value) %>%
select(-rn) |>
rename(type = key, estimate = Column1, p.value = Column2)

Expand Down
2 changes: 1 addition & 1 deletion R/specr-package.r
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#' @import dplyr
#' @importFrom lme4 VarCorr lmer
#' @importFrom glue glue
#' @importFrom tidyr expand_grid unnest unite
#' @importFrom tidyr expand_grid unnest unite pivot_wider
#' @importFrom rlang enquo enquos .data
#' @importFrom tibble tibble as_tibble lst
#' @importFrom igraph graph_from_data_frame
Expand Down

0 comments on commit 92e9f65

Please sign in to comment.