POOPE 发表于 2021-6-30 09:59:06

R语言中recharts包的安装和使用

  安装环境
  在Rstudio上进行安装的,R版本是3.6.0
安装方式
  library(devtools)
install_github(“madlogos/recharts”)
安装不上,有个什么rcul的包直接删除后,重新执行以上命令就可以安装成功。具体的是什么原因,可以看报错的内容。一般情况是:(1)remove (2)install (3)delete (4)Dependency packages

recharts的使用效果
str(iris)
echartr(iris, x= Sepal.Width, y=Petal.Width)
多个维度:series控制
echartr(iris, x=SepalWidth, y=PetalWidth, series=Species)

气泡图:type:标签控制

echartr(iris, SepalWidth, PetalWidth,series = Species, weight=PetalLength, type='bubble')


  
页: [1]
查看完整版本: R语言中recharts包的安装和使用