@@ -100,7 +100,7 @@ correlogram function given by $cor(h) = \exp(-h)$:
100100#| echo: false
101101xs = range(0, stop=10, length=100)
102102ys = exp.(-xs)
103- Mke.lines(xs, ys, axis = (xlabel= "h", ylabel= "cor(h)"), color= "black")
103+ Mke.lines(xs, ys, axis = (xlabel = "h", ylabel = "cor(h)"), color = "black")
104104```
105105
106106- The correlogram $cor(h)$ is often a non-increasing function
153153#| echo: false
154154xs = range(0, stop=10, length=100)
155155ys = 1 .- exp.(-xs)
156- Mke.lines(xs, ys, axis = (xlabel= "h", ylabel= "γ(h)"), color= "black")
156+ Mke.lines(xs, ys, axis = (xlabel = "h", ylabel = "γ(h)"), color = "black")
157157```
158158
159159where $cov(h)$ is the covariance function, a version of the correlogram
@@ -193,10 +193,10 @@ ys = g.(xs)
193193
194194fig = Mke.Figure()
195195ax = Mke.Axis(fig[1,1], xlabel="h", ylabel="γ(h)", limits = (nothing, nothing, 0, 1.1))
196- Mke.lines!(ax, xs, ys, color= "slategray", label= "model")
197- Mke.vlines!(ax, r, color= "black", linestyle= :dash, label= "range")
198- Mke.hlines!(ax, s, color= "teal", linestyle= :dash, label= "sill")
199- Mke.hlines!(ax, n, color= "teal", linestyle= :dot, label= "nugget")
196+ Mke.lines!(ax, xs, ys, color = "slategray", label = "model")
197+ Mke.vlines!(ax, r, color = "black", linestyle = :dash, label = "range")
198+ Mke.hlines!(ax, s, color = "teal", linestyle = :dash, label = "sill")
199+ Mke.hlines!(ax, n, color = "teal", linestyle = :dot, label = "nugget")
200200Mke.axislegend("Elements", position = :rc)
201201fig
202202```
0 commit comments