有没有办法像ggplot2一样在高抖动的“抖动”图中绘制散点图?

时间:2019-01-31 12:23:06

标签: r ggplot2 highcharts r-highcharter

我的疑问恰恰是标题中的写法。我正在尝试复制如下图表: enter image description here

我的观点是,我需要使用highcharter软件包。所以,我得到的是这段时间:

hcboxplot(x = iris$Sepal.Length,
            var =  iris$Species,
            outliers = FALSE) %>%
    hc_chart(type = "column") %>%  # to put box vertical
    hc_size(width = NULL, height = 350) %>%
    hc_add_series(
      data = iris,
      type = "scatter",
      hcaes(x = "Species", y = "Sepal.Length", group = "Species")
    )

enter image description here

我想像ggplot2一样“分散”散射。

先谢谢了。 Wlademir。

0 个答案:

没有答案