fix typos

This commit is contained in:
Miles Lucas 2020-04-30 23:38:52 -10:00
parent 294ade8aad
commit 8cce78c890

View File

@ -436,13 +436,14 @@ function get_clims(sp::Subplot, series::Series, op = process_clims(sp[:clims]))
end
"""
get_clims(::Series, op=Plots.ignorana_extrema)
get_clims(::Series, op=Plots.ignoranan_extrema)
Finds the limits for the colorbar by taking the "z-values" for the series and passing them into `op`,
which must be written to return the tuple `(zmin, zmax)`. The default op is the extrema of the finite
values of the input.
"""
function get_clims(series::Series, op=ignorenan_extrema)
@show op
zmin, zmax = Inf, -Inf
z_colored_series = (:contour, :contour3d, :heatmap, :histogram2d, :surface)
for vals in (series[:seriestype] in z_colored_series ? series[:z] : nothing, series[:line_z], series[:marker_z], series[:fill_z])