This package provides the plotting functionality for the KernelDensityEstimate.jl package, and currently only supports the Gadfly back-end.
This package is also used extensively by the RoMEPlotting.jl package.
This package can be installed with:
julia> ] # to activate package manager
pkg> add KernelDensityEstimatePlotting
using KernelDensityEstimate, KernelDensityEstimatePlotting
p = kde!(randn(3,100))
plot(marginal(p, [1]))
plot(marginal(p, [2,3]))
plot(p)
Please see examples on KernelDensityEstimate.jl.