Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/recipes.jl
Original file line number Diff line number Diff line change
Expand Up @@ -1148,7 +1148,7 @@ clamp_to_eps!(ary) = (replace!(x -> x <= 0.0 ? Base.eps(Float64) : x, ary); noth

@recipe function f(::Type{Val{:xerror}}, x, y, z) # COV_EXCL_LINE
error_style!(plotattributes)
markershape --> :vline
markershape := :vline
xerr = error_zipit(plotattributes[:xerror])
if z === nothing
plotattributes[:x], plotattributes[:y] = error_coords(xerr, x, y)
Expand All @@ -1165,7 +1165,7 @@ end

@recipe function f(::Type{Val{:yerror}}, x, y, z) # COV_EXCL_LINE
error_style!(plotattributes)
markershape --> :hline
markershape := :hline
yerr = error_zipit(plotattributes[:yerror])
if z === nothing
plotattributes[:y], plotattributes[:x] = error_coords(yerr, y, x)
Expand All @@ -1182,7 +1182,7 @@ end

@recipe function f(::Type{Val{:zerror}}, x, y, z) # COV_EXCL_LINE
error_style!(plotattributes)
markershape --> :hline
markershape := :hline
if z !== nothing
zerr = error_zipit(plotattributes[:zerror])
plotattributes[:z], plotattributes[:x], plotattributes[:y] =
Expand Down