Highchart colorValue` =颜色必须是符号或字符串,而不是形式

时间:2019-04-02 10:47:12

标签: highcharts

我想复制DataCamp中的代码,但是,它会引发这样的错误:错误:colorValue =颜色必须是符号或字符串,而不是公式 致电rlang::last_error()查看回溯

我的代码如下:

 library(tidyverse)
 library(highcharter)

pokemon%>%
   count(type_1)%>%
   arrange(n)%>%
   hchart(type = "treemap", 
   hcaes(x = type_1, value = n,
   color = n))

-----更新于2019年4月5日----

更新所有软件包后,代码运行良好,也许以前的软件包对于新的R版本而言太旧了。

吉姆

0 个答案:

没有答案