From a4380586e9531a464245f6a91cbedeb48b2d95eb Mon Sep 17 00:00:00 2001 From: Daniel Schwabeneder Date: Thu, 29 Aug 2019 09:35:02 +0200 Subject: [PATCH] remove `@show`s --- src/backends/pyplot.jl | 1 - src/layouts.jl | 1 - src/utils.jl | 1 - 3 files changed, 3 deletions(-) diff --git a/src/backends/pyplot.jl b/src/backends/pyplot.jl index c2b38edc..8b9d0f9e 100644 --- a/src/backends/pyplot.jl +++ b/src/backends/pyplot.jl @@ -726,7 +726,6 @@ function py_add_series(plt::Plot{PyPlotBackend}, series::Series) elseif typeof(z) <: AbstractVector # tri-surface plot (http://matplotlib.org/mpl_toolkits/mplot3d/tutorial.html#tri-surface-plots) - @show x, y, z handle = ax."plot_trisurf"(x, y, z; label = series[:label], zorder = series[:series_plotindex], diff --git a/src/layouts.jl b/src/layouts.jl index 83ae259d..7dbc088d 100644 --- a/src/layouts.jl +++ b/src/layouts.jl @@ -107,7 +107,6 @@ function resolve_mixed(mix::MixedMeasures, sp::Subplot, letter::Symbol) if mix.len != 0mm f = (letter == :x ? width : height) totlen = f(plotarea(sp)) - @show totlen pct += mix.len / totlen end if pct != 0 diff --git a/src/utils.jl b/src/utils.jl index 68fb6056..08887237 100644 --- a/src/utils.jl +++ b/src/utils.jl @@ -115,7 +115,6 @@ function regressionXY(x, y) end function replace_image_with_heatmap(z::Array{T}) where T<:Colorant - @show T, size(z) n, m = size(z) # idx = 0 colors = ColorGradient(vec(z))