Hello there!
I’ve registered a small package intended to simplify generating visualizations of medium dimensional data (~1-6 dimensions): PlotAxes. I find it handy during interactive, exploratory data analysis. You can plot an AbstractArray
, or, if you want the axes labeled in the plot, an AxisArray
. For example:
using PlotAxes, AxisArrays, Gadfly # replace Gadfly with VegaLite or RCall as desired
plotaxes(AxisArray(rand(10,10,4,2),:time,:freq,:age,:gender))