0

How to make this combination work? I can create the boxplot. I can create a scatter plot with jittered points, but I cannot put them together. Does anyone have any idea? The idea is to continue using echarts library.

library(echarts4r)
library(dplyr)

echart1 <- mtcars |>
  group_by(cyl) |>
  e_charts(cyl) |>
  e_scatter_(
    "hp",
    jitter_factor = 2
  ) 

echart2 <- mtcars |>
  group_by(cyl) |>
  e_charts() |>
  e_boxplot(hp)
  • not exactly sure what you want and dont know r but [this example](https://echarts.apache.org/examples/en/editor.html?c=boxplot-light-velocity) sounds about like it does what you are looking for in echarts? – Matthias Mertens Aug 31 '23 at 05:52

0 Answers0