简体   繁体   中英

Visualisation with highcharter - Error with highcharter in R

I am trying to plot basic charts with library: highcharter but getting the error :

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

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

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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