R:交互图包-apexcharter

最近在逛推特的时候,剽到了一些好玩的东西,先附上链接:
https://www.r-bloggers.com/interactive-visualization-in-r-with-apexcharter/

下面举几个例子吧:

library(apexcharter)
library(tidyverse)

mtcars %>% 
  count(cyl) %>% 
  apex(type = "bar",
       mapping = aes(x = "cyl", y = n))
image.png

这个图是交互式的,可以在Rstudio上下载SVG和PNG

你可能感兴趣的:(R:交互图包-apexcharter)