简体   繁体   English

highcharter的可视化-R中highcharter的错误

[英]Visualisation with highcharter - Error with highcharter in R

I am trying to plot basic charts with library: highcharter but getting the error : 我正在尝试使用library:highcharter绘制基本图表,但出现错误:

highchart()%>%
  hc_add_series(pokemon, "scatter", hcaes(x = height, y = weight))

Warning: Error in mutate_impl: Column `x` is of unsupported type quoted call

Note: I was tried as per the document : https://www.datacamp.com/community/tutorials/data-visualization-highcharter-r 注意:我已按照文档进行了尝试: https : //www.datacamp.com/community/tutorials/data-visualization-highcharter-r

我不知道您的代码到底有什么问题,但是请尝试以下操作:

hchart(pokemon, "point", hcaes(x = height, y = weight))

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM