An open API service indexing awesome lists of open source software.

https://github.com/jw3126/axisarrayplots.jl

Plots.jl support for AxisArrays.jl
https://github.com/jw3126/axisarrayplots.jl

arrays julia plots

Last synced: about 1 year ago
JSON representation

Plots.jl support for AxisArrays.jl

Awesome Lists containing this project

README

          

# AxisArrayPlots

## Usage

```Julia
using AxisArrays, Plots, AxisArrayPlots
arr1 = AxisArray(randn(10), Axis{:cost}(linspace(0,1,10)))
arr2 = AxisArray(randn(7,12), Axis{:AxisName1}(["x$i" for i in 1:7]), Axis{:AxisName2}(1:12))
display(plot(arr1))
display(plot(arr2))
display(heatmap(arr2))
```
![1d](examples/1.png)
![2d](examples/2.png)
![2h](examples/2h.png)