Update 'arkouda_viz' package and av.explore() #179
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR improves the
arkouda_vizpackages as follows:Updates the package to a recent version of
holoviews. Tested with Holoviews 1.20.Introduces caching in the
explore()function. This way it avoids recomputing the hashtable for the second time, which can happen due to how holoviews' "stream" machinery works. This also preserves the current zoom/position in the histogram while changing color maps.Updates the README to list correctly the functions that are available and to display the logo.
Other fixes in
explore()and other minor fixes and cleanups.Removes an explicit dependence on
bokeh, which is helpful when this package is not installed.arkouda_vizshould work withoutbokeh.Enables the user to set the default engine for all future calls to the API functions by updating
arkouda_viz.default_engineBumps the package minor version by 1.
The changes in
explore()require Arkouda's histogram-2D API to accept therangeargument, Bears-R-Us/arkouda#4078