Open
Description
The current way of providing data for plots in the plot_methods is through arrays or lists. The dimension checking is quite fragile and also varies from method to method (both on the develop
and plot_methods_refactor
branch)
We should have:
- A way to convert given input data from a variety of formats to a consistent known format. Some ideas for this:
- numpy arrays for single plot calls, lists of numpy arrays for multiple plot calls
- pandas dataframes (Probably more natural for bokeh_plots)
- Support for exporting data into a variety of formats