https://github.com/juliarobotics/kerneldensityestimateplotting.jl
Plotting functions for the KernelDensityEstimate.jl package
https://github.com/juliarobotics/kerneldensityestimateplotting.jl
Last synced: 4 months ago
JSON representation
Plotting functions for the KernelDensityEstimate.jl package
- Host: GitHub
- URL: https://github.com/juliarobotics/kerneldensityestimateplotting.jl
- Owner: JuliaRobotics
- License: mit
- Created: 2017-11-21T23:56:16.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2022-11-19T02:04:19.000Z (over 3 years ago)
- Last Synced: 2025-02-24T13:49:04.694Z (over 1 year ago)
- Language: Julia
- Size: 71.3 KB
- Stars: 0
- Watchers: 3
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# KernelDensityEstimatePlotting.jl
[![build-dev]][CI-url] [![codecov-img]][codecov-url]
This package provides the plotting functionality for the [KernelDensityEstimate.jl](https://github.com/JuliaRobotics/KernelDensityEstimate.jl) package, and currently only supports the Gadfly back-end.
This package is also used extensively by the [RoMEPlotting.jl](https://github.com/dehann/RoMEPlotting.jl) package.
# Install
This package can be installed with:
```julia
julia> ] # to activate package manager
pkg> add KernelDensityEstimatePlotting
```
# Usage
## Basic Examples
```julia
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](https://github.com/JuliaRobotics/KernelDensityEstimate.jl).
[CI-url]: https://github.com/JuliaRobotics/KernelDensityEstimatePlotting.jl/actions/workflows/ci.yml
[build-dev]: https://github.com/JuliaRobotics/KernelDensityEstimatePlotting.jl/actions/workflows/ci.yml/badge.svg?branch=master
[codecov-url]: https://codecov.io/github/JuliaRobotics/KernelDensityEstimatePlotting.jl?branch=master
[codecov-img]: https://codecov.io/github/JuliaRobotics/KernelDensityEstimatePlotting.jl/coverage.svg?branch=master