Ian Hunt-Isaak
Ian Hunt-Isaak
Quick first pass at implementing `plot_surface` using the `artist.remove` strategy from https://github.com/ianhi/mpl-interactions/issues/89#issuecomment-882816718 attn: @redeboer this is a rough starting place. If you'd like to work on this you're absolutely welcome...
This will eventually close: https://github.com/ianhi/mpl-interactions/issues/183 Not really there yet (may yet restructure) but nice to open early TODO: - [ ] RangeSliders - [ ] Better slider inheritance - [...
### Problem Sometimes not the entire range of a parameter is interesting for a gif and it's a hassle to go back up and change things. Or maybe you want...
### Problem You can specify `vmin_vmax` as a slider, and you can individual specify `vmin` and `vmax` as functions. But you cannot specify both `vmin` and `vmax` using a single...
### Problem Bugs like #195 can currently only be caught manually - this is because no tests actually move the sliders ### Proposed Solution Add tests that modify the slider...
### Problem Because user functions get called for all kwargs that are registered, including any kwargs that were added as scalars for things like `alpha`. For example: ```python def test_imshow_scalars():...
It would be cool to have `interactive_[imshow, pcolormesh, hist,...]`. First list: **has a set_data method** - [ ] pcolormesh (see https://stackoverflow.com/a/31490420/835607) - [ ] colorbar - this is just a...
### Problem We're missing `plt.suptitle` ### Proposed Solution Add it. It should probably look very similar to the implementation of `title`: https://github.com/ianhi/mpl-interactions/blob/e7f77aa46883d70fbfa390c6b99ce73d2c0e2fb8/mpl_interactions/pyplot.py#L941 See https://github.com/ianhi/mpl-interactions/issues/180 for more detailed instructions on adding...
### Problem If you want to directly modify the current value of a slider generated by this package it is very difficult. Currently it is undocumented, and confusingly/difficult would be...
### Problem It's probably not clear to literally anyone in the world except me how to add a new function. This is obviously bad. ### Suggested Improvement Create a docs...