Skip to content

Commit

Permalink
increase linewidth, markersize change in qqnorm, qqplot
Browse files Browse the repository at this point in the history
  • Loading branch information
ffreyer committed Oct 16, 2024
1 parent 67fdf2d commit 903fea1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ReferenceTests/src/tests/examples2d.jl
Original file line number Diff line number Diff line change
Expand Up @@ -1688,8 +1688,8 @@ end
fig = Figure()
xs = 2 .* RNG.randn(10) .+ 3
qqnorm(fig[1, 1], xs, qqline = :fitrobust, strokecolor = :cyan, strokewidth = 2)
qqnorm(fig[1, 2], xs, qqline = :none, markersize = 10, marker = Rect, markercolor = :red)
qqnorm(fig[2, 1], xs, qqline = :fit, linestyle = :dash, linewidth = 4)
qqnorm(fig[1, 2], xs, qqline = :none, markersize = 15, marker = Rect, markercolor = :red)
qqnorm(fig[2, 1], xs, qqline = :fit, linestyle = :dash, linewidth = 6)
qqnorm(fig[2, 2], xs, qqline = :identity, color = :orange)
fig
end
Expand All @@ -1698,8 +1698,8 @@ end
fig = Figure()
xs = 2 .* RNG.randn(10) .+ 3; ys = RNG.randn(10)
qqplot(fig[1, 1], xs, ys, qqline = :fitrobust, strokecolor = :cyan, strokewidth = 2)
qqplot(fig[1, 2], xs, ys, qqline = :none, markersize = 10, marker = Rect, markercolor = :red)
qqplot(fig[2, 1], xs, ys, qqline = :fit, linestyle = :dash, linewidth = 4)
qqplot(fig[1, 2], xs, ys, qqline = :none, markersize = 15, marker = Rect, markercolor = :red)
qqplot(fig[2, 1], xs, ys, qqline = :fit, linestyle = :dash, linewidth = 6)
qqplot(fig[2, 2], xs, ys, qqline = :identity, color = :orange)
fig
end
Expand Down

0 comments on commit 903fea1

Please sign in to comment.