Improvements to `QuickPlot`
See original GitHub issueQuickPlot
could do with a few updates. Feel free to add more to this list:
- More obvious error when two variables have different dimensions
- More obvious error when axlims are inf
- Allow plotting a single 3D variable (contour plot)
- Make the x-axis label “x” when the spatial scale isn’t found (or raise error?)
- Should there be default output variables? Or should they always have to be passed in (which then makes it more obvious how to change them?)
- Try to clean up
set_output_variables
to make it more obvious what is being done - Slider sometimes obscures the figures
- Should we be calling it
SliderPlot
?
Issue Analytics
- State:
- Created 4 years ago
- Reactions:1
- Comments:11
Top Results From Across the Web
03 Plotting with quickPlot
Changes to data, maps, objects can happen rapidly and repeatedly. Visualizing this can be critical, especially during the model building ...
Read more >Quickplot Help
In Quickplot a graph displays one or more plots. Quickplot displays each graph in a page tab, ... This distance varies as the...
Read more >swharden/QuickPlot: Experimental Plotting Library for .NET
QuickPlot is a high-speed plotting library for .NET that makes it easy to interactively display high density data (tens of millions of points)....
Read more >Virtuosity: Can I Speed up My Plots? - Cadence Community
No, the quick plot data is real data, just with less points. When zoomed out, Quick Plot data will look very similar to...
Read more >ATOMS : QuickPlot details - Scilab
QuickPlot provides a GUI to quickly create 2D line plots from data stored in files without writing a code. Its purpose is to...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
can we just move
isnotebook
toQuickPlot
so we can use it directly in notebooks without having to do the slider widget manually?One additional thing that would be nice, is if QuickPlot can accept solution objects and simulation objects. If a simulation object is passed, it just does simulation.solution automatically. I am finding myself writing [sim1.solution, sim2.solution, etc] or having to do [sim.solution for sim in [sim1, sim2, sim3]] quite a bit, which is just messy