From 3614966241fcd3120463f763647c804f748d1e82 Mon Sep 17 00:00:00 2001 From: yha Date: Mon, 17 Jun 2019 00:10:53 +0300 Subject: [PATCH] Moved new example to end to allow PlotsReferenceImages update --- src/examples.jl | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/examples.jl b/src/examples.jl index f328f7df..c5100863 100644 --- a/src/examples.jl +++ b/src/examples.jl @@ -129,16 +129,6 @@ PlotExample("Histogram2D", end)] ), -PlotExample("Histogram2D (complex values)", - "", - [:(begin - n = 10_000 - x = exp.(0.1randn(n) .+ randn(n).*(im)) - histogram2d(x, nbins=(20,40), show_empty_bins=true, - normed=true, aspect_ratio=1) - end)] -), - PlotExample("Line types", "", [:(begin @@ -464,6 +454,16 @@ see: http://stackoverflow.com/a/37732384/5075246 end)] ), +PlotExample("Histogram2D (complex values)", + "", + [:(begin + n = 10_000 + x = exp.(0.1randn(n) .+ randn(n).*(im)) + histogram2d(x, nbins=(20,40), show_empty_bins=true, + normed=true, aspect_ratio=1) + end)] +), + ] # Some constants for PlotDocs and PlotReferenceImages