无法使用 plot_ly 函数绘制图形

Unable to draw graphs with plot_ly function

今天有人要求我使用 plotly 包为 Shiny 应用程序绘制一些图表,但我不知道如何解决我的问题,所以我决定寻求帮助!

每次我尝试使用函数 "plot_ly" 我都会得到同样的错误:

Error in arrange_impl(.data, dots) :
Evaluation error: as_dictionary() is defunct as of rlang 0.3.0.
Please use as_data_pronoun() instead.

我尝试重新制作plotly官网的例子,结果还是一样!

例如,当我尝试以下代码时,我收到上面的消息:

library(plotly)

USPersonalExpenditure <- 
data.frame("Categorie"=rownames(USPersonalExpenditure), 
USPersonalExpenditure)
data <- USPersonalExpenditure[,c('Categorie', 'X1960')]

p <- plot_ly(data, labels = ~Categorie, values = ~X1960, type = 'pie')

我也重新安装了软件包,更新了我安装的每个软件包,但它们无关我仍然被那个错误所困扰。

我也没有在 google 上找到任何相关内容。

提前致谢,新年快乐!

我的问题解决了!我实际上没有安装包 dplyr ... cderv (https://community.rstudio.com/t/plotly-unable-to-draw-graphs/20639) :

给出了对我有帮助的答案

This seems like a compatibility issue between :package: version. rlang version seems to be newer than your installed dplyr can deal with