我的观点是,我需要使用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")
)
我想像ggplot2一样“分散”散射。
先谢谢了。 Wlademir。