dplyr package not working (in tandem with highcharter)

I couple days ago, I tried updating the highcharter package for my shiny app, which resulted in me updating dplyr to version 1.0.2 and R version 4.0.2. What I found is that my shiny app suddenly stopped working and seemed incompatible with these new updates.

So, I reverted back to dplyr version 0.8.3 in hopes that this was the issue. However, now I can no longer use any of the dplyr functions as well as the highcharter package. Below are the errors I now get.

  1. When I try to load highcharter:
library(highcharter)
Error: package or namespace load failed for ‘highcharter’:
 object ‘all_of’ is not exported by 'namespace:dplyr'
  1. When I try to use any of the dplyr functions (i.e., mutate, select, filter):
library(tidyverse)
library(nycflights13)

> flights %>% select(month)
Error in select_impl(.data, vars) : object '_dplyr_select_impl' not found

> flights %>% filter(month > 2)
Error in filter_impl(.data, quo) : object '_dplyr_filter_impl' not found

> flights %>% mutate(month = as.character(month))
Error in mutate_impl(.data, dots, caller_env()) : 
  object '_dplyr_mutate_impl' not found

Here are the packages I am using and their versions:

> devtools::session_info()
- Session info -------------------------------------------------------------------------------------------------------------------------
 setting  value                       
 version  R version 4.0.2 (2020-06-22)
 os       Windows 10 x64              
 system   x86_64, mingw32             
 ui       RStudio                     
 language (EN)                        
 collate  English_United States.1252  
 ctype    English_United States.1252  
 tz       America/New_York            
 date     2020-08-30                  

- Packages -----------------------------------------------------------------------------------------------------------------------------
 package      * version date       lib source        
 assertthat     0.2.1   2019-03-21 [1] CRAN (R 4.0.0)
 backports      1.1.6   2020-04-05 [1] CRAN (R 4.0.0)
 blob           1.2.1   2020-01-20 [1] CRAN (R 4.0.2)
 broom          0.7.0   2020-07-09 [1] CRAN (R 4.0.2)
 callr          3.4.3   2020-03-28 [1] CRAN (R 4.0.0)
 cellranger     1.1.0   2016-07-27 [1] CRAN (R 4.0.0)
 cli            2.0.2   2020-02-28 [1] CRAN (R 4.0.0)
 colorspace     1.4-1   2019-03-18 [1] CRAN (R 4.0.0)
 crayon         1.3.4   2017-09-16 [1] CRAN (R 4.0.0)
 DBI            1.1.0   2019-12-15 [1] CRAN (R 4.0.0)
 dbplyr         1.4.4   2020-05-27 [1] CRAN (R 4.0.2)
 desc           1.2.0   2018-05-01 [1] CRAN (R 4.0.0)
 devtools       2.3.1   2020-07-21 [1] CRAN (R 4.0.2)
 digest         0.6.25  2020-02-23 [1] CRAN (R 4.0.0)
 dplyr        * 0.8.2   2019-06-29 [1] CRAN (R 4.0.0)
 ellipsis       0.3.0   2019-09-20 [1] CRAN (R 4.0.0)
 fansi          0.4.1   2020-01-08 [1] CRAN (R 4.0.0)
 forcats      * 0.5.0   2020-03-01 [1] CRAN (R 4.0.0)
 fs             1.4.1   2020-04-04 [1] CRAN (R 4.0.0)
 generics       0.0.2   2018-11-29 [1] CRAN (R 4.0.0)
 ggplot2      * 3.3.2   2020-06-19 [1] CRAN (R 4.0.2)
 glue           1.4.0   2020-04-03 [1] CRAN (R 4.0.0)
 gtable         0.3.0   2019-03-25 [1] CRAN (R 4.0.0)
 haven          2.3.1   2020-06-01 [1] CRAN (R 4.0.2)
 hms            0.5.3   2020-01-08 [1] CRAN (R 4.0.0)
 httr           1.4.2   2020-07-20 [1] CRAN (R 4.0.2)
 jsonlite       1.7.0   2020-06-25 [1] CRAN (R 4.0.2)
 lifecycle      0.2.0   2020-03-06 [1] CRAN (R 4.0.0)
 lubridate      1.7.9   2020-06-08 [1] CRAN (R 4.0.2)
 magrittr       1.5     2014-11-22 [1] CRAN (R 4.0.0)
 memoise        1.1.0   2017-04-21 [1] CRAN (R 4.0.2)
 modelr         0.1.8   2020-05-19 [1] CRAN (R 4.0.2)
 munsell        0.5.0   2018-06-12 [1] CRAN (R 4.0.0)
 nycflights13 * 1.0.1   2019-09-16 [1] CRAN (R 4.0.2)
 pillar         1.4.6   2020-07-10 [1] CRAN (R 4.0.2)
 pkgbuild       1.1.0   2020-07-13 [1] CRAN (R 4.0.2)
 pkgconfig      2.0.3   2019-09-22 [1] CRAN (R 4.0.0)
 pkgload        1.0.2   2018-10-29 [1] CRAN (R 4.0.0)
 prettyunits    1.1.1   2020-01-24 [1] CRAN (R 4.0.0)
 processx       3.4.2   2020-02-09 [1] CRAN (R 4.0.0)
 ps             1.3.3   2020-05-08 [1] CRAN (R 4.0.0)
 purrr        * 0.3.4   2020-04-17 [1] CRAN (R 4.0.0)
 R6             2.4.1   2019-11-12 [1] CRAN (R 4.0.0)
 Rcpp           1.0.4.6 2020-04-09 [1] CRAN (R 4.0.0)
 readr        * 1.3.1   2018-12-21 [1] CRAN (R 4.0.0)
 readxl         1.3.1   2019-03-13 [1] CRAN (R 4.0.0)
 remotes        2.2.0   2020-07-21 [1] CRAN (R 4.0.2)
 reprex         0.3.0   2019-05-16 [1] CRAN (R 4.0.0)
 rlang          0.4.7   2020-07-09 [1] CRAN (R 4.0.2)
 rprojroot      1.3-2   2018-01-03 [1] CRAN (R 4.0.0)
 rstudioapi     0.11    2020-02-07 [1] CRAN (R 4.0.0)
 rvest          0.3.6   2020-07-25 [1] CRAN (R 4.0.2)
 scales         1.1.1   2020-05-11 [1] CRAN (R 4.0.2)
 sessioninfo    1.1.1   2018-11-05 [1] CRAN (R 4.0.2)
 stringi        1.4.6   2020-02-17 [1] CRAN (R 4.0.0)
 stringr      * 1.4.0   2019-02-10 [1] CRAN (R 4.0.0)
 testthat       2.3.2   2020-03-02 [1] CRAN (R 4.0.0)
 tibble       * 3.0.1   2020-04-20 [1] CRAN (R 4.0.0)
 tidyr        * 1.1.2   2020-08-27 [1] CRAN (R 4.0.2)
 tidyselect     1.1.0   2020-05-11 [1] CRAN (R 4.0.2)
 tidyverse    * 1.3.0   2019-11-21 [1] CRAN (R 4.0.2)
 usethis        1.6.1   2020-04-29 [1] CRAN (R 4.0.2)
 vctrs          0.3.0   2020-05-11 [1] CRAN (R 4.0.2)
 withr          2.2.0   2020-04-20 [1] CRAN (R 4.0.0)
 xml2           1.3.2   2020-04-23 [1] CRAN (R 4.0.0)

[1] C:/Users/abshk/Documents/R/win-library/4.0
[2] C:/Program Files/R/R-4.0.2/library

Any help resolving this issue would be greatly appreciated, as I would love to get my shiny app back up and running!

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.