Skip to content

Commit

Permalink
make reference line in zetaplot visually distinct (#78)
Browse files Browse the repository at this point in the history
* make reference line in zetaplot visually different

* patch bump
  • Loading branch information
palday authored Sep 9, 2023
1 parent 1383fa8 commit c62c630
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "MixedModelsMakie"
uuid = "b12ae82c-6730-437f-aff9-d2c38332a376"
authors = ["Phillip Alday <[email protected]>", "Douglas Bates <[email protected]>", "contributors"]
version = "0.3.26"
version = "0.3.27"

[deps]
BSplineKit = "093aae92-e908-43d7-9660-e50ee39d5a0a"
Expand Down
2 changes: 1 addition & 1 deletion src/profile.jl
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ function zetaplot!(f::Union{Makie.FigureLike,Makie.GridLayout},
scatter!(ax, xv, fw.(xv))
est = rp(0)
slope = (Derivative(1) * fw)(est)
ablines!(ax, -(slope * est), slope)
ablines!(ax, -(slope * est), slope; color=:black, linestyle=:dash)
end
end
linkyaxes!(axs...)
Expand Down

0 comments on commit c62c630

Please sign in to comment.