Reputation: 175
I got the following graph for each job title with salary in box plot:
so there are some outliers here, presented as dot, I want to make some jitters like this for each job title have outliers:
Is there any way I can do it with Vegalite package?
can someone gives me some advices please?
Thanks in advance!
Upvotes: 5
Views: 232
Reputation: 337
using StatisticalGraphics.jl
package:
using InMemoryDatasets
using StatisticalGraphics
ds=Dataset(x=[1,2],y=[2,3])
sgplot(ds,Line(x=:x,y=:y))
if you run this code you'll see
press "view source" to see
VegaLite
specs.
Upvotes: 2
Reputation: 30219
You can read a solution for jittering here:
https://github.com/vega/vega-lite/issues/4703
Upvotes: 1