Skip to content

Commit 9b961e0

Browse files
committed
fix plot_kde
1 parent 466bd7e commit 9b961e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/plotting.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -272,5 +272,5 @@ underlying call to `plot`.
272272
"""
273273
function plot_kde(samples; boundary=(nothing,nothing), normalize="integral", kwargs...)
274274
k = kde(samples; boundary, normalize)
275-
plot(k.x, k.P; kwargs...)
275+
plot(k.kde.x, k.kde.P; kwargs...)
276276
end

0 commit comments

Comments
 (0)