Skip to content

Commit 03ca764

Browse files
committed
bug fix
1 parent e0164d3 commit 03ca764

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/precompile/warmup.jl

+2-1
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,9 @@ function warmup()
1010
sgplot(ds, Bubble(x=:y, y=:y2, size=:x, labelresponse=:x))
1111
sgplot(groupby(ds, 1), BoxPlot(y=r"y", category=:group, outliers = true), groupcolormodel = Dict(:scheme => "category20b"))
1212
sgplot(groupby(ds, :group), Bar(y=:x, response=:y2, barcorner=20), groupcolormodel = Dict(:scheme => "category20b"), layout=:row)
13+
sgplot(groupby(ds, 1), Violin(y=r"y", category=:group, outliers = true))
1314
p1 = sgplot(ds, Reg(x=:x, y=:y, degree=3))
1415
p2 = sgplot(ds, Pie(category=:x, group=:group, sort=true), width=200)
15-
sggrid([p1, p2], columns=1, center=true, align=:all)
16+
sggrid(p1, p2, columns=1, center=true, align=:all)
1617
nothing
1718
end

0 commit comments

Comments
 (0)