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
- Host: GitHub
- URL: https://github.com/jw3126/axisarrayplots.jl
- Owner: jw3126
- License: other
- Created: 2017-08-23T14:59:31.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2019-05-23T11:23:41.000Z (about 7 years ago)
- Last Synced: 2025-02-10T12:35:45.588Z (over 1 year ago)
- Topics: arrays, julia, plots
- Language: Julia
- Size: 128 KB
- Stars: 4
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
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))
```


