首页 > 解决方案 > 使用 highcharter 进行可视化 - R 中的 highcharter 错误

问题描述

我正在尝试使用 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

注意: 我按照文档进行了尝试: https ://www.datacamp.com/community/tutorials/data-visualization-highcharter-r

标签: rr-highcharter

解决方案


我不知道你的代码到底有什么问题,但试试这个:

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

推荐阅读