From 0b4b9e926da67dd0a32885c6f2871ecfcb7da8ba Mon Sep 17 00:00:00 2001 From: Diego Javier Zea Date: Fri, 24 Jul 2020 17:01:00 +0200 Subject: [PATCH] Update for Julia 1: Use dot broadcast --- examples/box_plots.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/box_plots.jl b/examples/box_plots.jl index 6ee60f37..22880fba 100644 --- a/examples/box_plots.jl +++ b/examples/box_plots.jl @@ -2,7 +2,7 @@ using PlotlyJS function box1() y0 = rand(50) - y1 = rand(50) + 1 + y1 = rand(50) .+ 1 trace1 = box(;y=y0) trace2 = box(;y=y1) data = [trace1, trace2]