Skip to content

Latest commit

 

History

History
40 lines (25 loc) · 1.28 KB

File metadata and controls

40 lines (25 loc) · 1.28 KB

KernelDensityEstimatePlotting.jl

build-dev codecov-img

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.

Install

This package can be installed with:

julia> ] # to activate package manager
pkg> add KernelDensityEstimatePlotting

Usage

Basic Examples

using KernelDensityEstimate, KernelDensityEstimatePlotting

p = kde!(randn(3,100))
plot(marginal(p, [1]))
plot(marginal(p, [2,3]))
plot(p)

More Examples

Please see examples on KernelDensityEstimate.jl.