hvplot 0.11.3__tar.gz → 0.12.0a1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {hvplot-0.11.3 → hvplot-0.12.0a1}/PKG-INFO +192 -104
- {hvplot-0.11.3 → hvplot-0.12.0a1}/README.md +6 -1
- hvplot-0.12.0a1/doc/_static/logo_horizontal.png +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/conf.py +20 -4
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/conftest.py +0 -6
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/developer_guide.md +3 -3
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/index.md +1 -1
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/ref/api/index.md +8 -1
- hvplot-0.12.0a1/doc/ref/api/manual/hvplot.hvPlot.area.ipynb +155 -0
- hvplot-0.12.0a1/doc/ref/api/manual/hvplot.hvPlot.bar.ipynb +329 -0
- hvplot-0.12.0a1/doc/ref/api/manual/hvplot.hvPlot.barh.ipynb +312 -0
- hvplot-0.12.0a1/doc/ref/api/manual/hvplot.hvPlot.bivariate.ipynb +196 -0
- hvplot-0.12.0a1/doc/ref/api/manual/hvplot.hvPlot.box.ipynb +134 -0
- hvplot-0.12.0a1/doc/ref/api/manual/hvplot.hvPlot.contour.ipynb +98 -0
- hvplot-0.12.0a1/doc/ref/api/manual/hvplot.hvPlot.contourf.ipynb +100 -0
- hvplot-0.12.0a1/doc/ref/api/manual/hvplot.hvPlot.dataset.ipynb +55 -0
- hvplot-0.12.0a1/doc/ref/api/manual/hvplot.hvPlot.errorbars.ipynb +135 -0
- hvplot-0.12.0a1/doc/ref/api/manual/hvplot.hvPlot.explorer.ipynb +47 -0
- hvplot-0.12.0a1/doc/ref/api/manual/hvplot.hvPlot.heatmap.ipynb +201 -0
- hvplot-0.12.0a1/doc/ref/api/manual/hvplot.hvPlot.hexbin.ipynb +193 -0
- hvplot-0.12.0a1/doc/ref/api/manual/hvplot.hvPlot.hist.ipynb +335 -0
- hvplot-0.12.0a1/doc/ref/api/manual/hvplot.hvPlot.image.ipynb +159 -0
- hvplot-0.12.0a1/doc/ref/api/manual/hvplot.hvPlot.kde.ipynb +226 -0
- hvplot-0.12.0a1/doc/ref/api/manual/hvplot.hvPlot.labels.ipynb +92 -0
- hvplot-0.12.0a1/doc/ref/api/manual/hvplot.hvPlot.line.ipynb +256 -0
- hvplot-0.12.0a1/doc/ref/api/manual/hvplot.hvPlot.ohlc.ipynb +142 -0
- hvplot-0.12.0a1/doc/ref/api/manual/hvplot.hvPlot.paths.ipynb +221 -0
- hvplot-0.12.0a1/doc/ref/api/manual/hvplot.hvPlot.points.ipynb +270 -0
- hvplot-0.12.0a1/doc/ref/api/manual/hvplot.hvPlot.polygons.ipynb +99 -0
- hvplot-0.12.0a1/doc/ref/api/manual/hvplot.hvPlot.quadmesh.ipynb +175 -0
- hvplot-0.12.0a1/doc/ref/api/manual/hvplot.hvPlot.rgb.ipynb +140 -0
- hvplot-0.12.0a1/doc/ref/api/manual/hvplot.hvPlot.scatter.ipynb +255 -0
- hvplot-0.12.0a1/doc/ref/api/manual/hvplot.hvPlot.step.ipynb +97 -0
- hvplot-0.12.0a1/doc/ref/api/manual/hvplot.hvPlot.table.ipynb +68 -0
- hvplot-0.12.0a1/doc/ref/api/manual/hvplot.hvPlot.vectorfield.ipynb +154 -0
- hvplot-0.12.0a1/doc/ref/api/manual/hvplot.hvPlot.violin.ipynb +114 -0
- hvplot-0.12.0a1/doc/ref/api/manual/hvplot.plotting.andrews_curves.ipynb +169 -0
- hvplot-0.12.0a1/doc/ref/api/manual/hvplot.plotting.lag_plot.ipynb +139 -0
- hvplot-0.12.0a1/doc/ref/api/manual/hvplot.plotting.parallel_coordinates.ipynb +167 -0
- hvplot-0.12.0a1/doc/ref/api/manual/hvplot.plotting.scatter_matrix.ipynb +216 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/ref/api_compatibility/pandas/index.ipynb +1 -2
- hvplot-0.12.0a1/doc/ref/deprecations.md +15 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/ref/index.md +2 -1
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/ref/installation.md +1 -1
- hvplot-0.12.0a1/doc/ref/plotting_options/axis.ipynb +1059 -0
- hvplot-0.12.0a1/doc/ref/plotting_options/color_colormap.ipynb +478 -0
- hvplot-0.12.0a1/doc/ref/plotting_options/data.ipynb +673 -0
- hvplot-0.12.0a1/doc/ref/plotting_options/geographic.ipynb +523 -0
- hvplot-0.12.0a1/doc/ref/plotting_options/index.md +135 -0
- hvplot-0.12.0a1/doc/ref/plotting_options/interactivity.ipynb +398 -0
- hvplot-0.12.0a1/doc/ref/plotting_options/legend.ipynb +186 -0
- hvplot-0.12.0a1/doc/ref/plotting_options/resampling.ipynb +598 -0
- hvplot-0.12.0a1/doc/ref/plotting_options/size_layout.ipynb +427 -0
- hvplot-0.12.0a1/doc/ref/plotting_options/streaming.ipynb +164 -0
- hvplot-0.12.0a1/doc/ref/plotting_options/styling.ipynb +324 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/tutorials/getting_started.ipynb +4 -5
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/tutorials/getting_started_pandas.ipynb +2 -2
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/user_guide/Large_Timeseries.ipynb +1 -1
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/user_guide/NetworkX.ipynb +4 -4
- {hvplot-0.11.3 → hvplot-0.12.0a1}/hvplot/__init__.py +1 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/hvplot/_version.py +2 -2
- {hvplot-0.11.3 → hvplot-0.12.0a1}/hvplot/converter.py +291 -132
- {hvplot-0.11.3 → hvplot-0.12.0a1}/hvplot/plotting/__init__.py +10 -1
- {hvplot-0.11.3 → hvplot-0.12.0a1}/hvplot/plotting/andrews_curves.py +7 -7
- {hvplot-0.11.3 → hvplot-0.12.0a1}/hvplot/plotting/core.py +294 -751
- {hvplot-0.11.3 → hvplot-0.12.0a1}/hvplot/plotting/lag_plot.py +3 -3
- {hvplot-0.11.3 → hvplot-0.12.0a1}/hvplot/plotting/parallel_coordinates.py +3 -3
- {hvplot-0.11.3 → hvplot-0.12.0a1}/hvplot/plotting/scatter_matrix.py +14 -11
- hvplot-0.12.0a1/hvplot/sampledata.py +24 -0
- hvplot-0.12.0a1/hvplot/tests/plotting/testandrewscurves.py +24 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/hvplot/tests/testcharts.py +9 -0
- hvplot-0.12.0a1/hvplot/tests/testdeprecations.py +30 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/hvplot/tests/testgeo.py +72 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/hvplot/tests/testhelp.py +4 -4
- {hvplot-0.11.3 → hvplot-0.12.0a1}/hvplot/tests/testoperations.py +44 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/hvplot/tests/testoptions.py +107 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/hvplot/ui.py +1 -1
- {hvplot-0.11.3 → hvplot-0.12.0a1}/hvplot/util.py +127 -24
- {hvplot-0.11.3 → hvplot-0.12.0a1}/hvplot/utilities.py +1 -1
- {hvplot-0.11.3 → hvplot-0.12.0a1}/pyproject.toml +19 -12
- hvplot-0.11.3/.git-blame-ignore-revs +0 -5
- hvplot-0.11.3/.git_archival.txt +0 -4
- hvplot-0.11.3/.gitattributes +0 -5
- hvplot-0.11.3/.github/CONTRIBUTING.md +0 -3
- hvplot-0.11.3/.github/FUNDING.yml +0 -3
- hvplot-0.11.3/.github/workflows/build.yaml +0 -67
- hvplot-0.11.3/.github/workflows/docs.yaml +0 -109
- hvplot-0.11.3/.github/workflows/nightly_lock.yaml +0 -25
- hvplot-0.11.3/.github/workflows/test.yaml +0 -213
- hvplot-0.11.3/.pre-commit-config.yaml +0 -32
- hvplot-0.11.3/CHANGELOG.md +0 -3
- hvplot-0.11.3/CODE_OF_CONDUCT.md +0 -5
- hvplot-0.11.3/binder/environment.yml +0 -36
- hvplot-0.11.3/binder/postBuild +0 -1
- hvplot-0.11.3/doc/ref/api/manual/hvplot.hvPlot.area.ipynb +0 -40
- hvplot-0.11.3/doc/ref/api/manual/hvplot.hvPlot.bar.ipynb +0 -36
- hvplot-0.11.3/doc/ref/api/manual/hvplot.hvPlot.barh.ipynb +0 -36
- hvplot-0.11.3/doc/ref/api/manual/hvplot.hvPlot.bivariate.ipynb +0 -36
- hvplot-0.11.3/doc/ref/api/manual/hvplot.hvPlot.box.ipynb +0 -36
- hvplot-0.11.3/doc/ref/api/manual/hvplot.hvPlot.contour.ipynb +0 -36
- hvplot-0.11.3/doc/ref/api/manual/hvplot.hvPlot.contourf.ipynb +0 -36
- hvplot-0.11.3/doc/ref/api/manual/hvplot.hvPlot.dataset.ipynb +0 -30
- hvplot-0.11.3/doc/ref/api/manual/hvplot.hvPlot.errorbars.ipynb +0 -36
- hvplot-0.11.3/doc/ref/api/manual/hvplot.hvPlot.heatmap.ipynb +0 -36
- hvplot-0.11.3/doc/ref/api/manual/hvplot.hvPlot.hexbin.ipynb +0 -36
- hvplot-0.11.3/doc/ref/api/manual/hvplot.hvPlot.hist.ipynb +0 -36
- hvplot-0.11.3/doc/ref/api/manual/hvplot.hvPlot.image.ipynb +0 -36
- hvplot-0.11.3/doc/ref/api/manual/hvplot.hvPlot.kde.ipynb +0 -36
- hvplot-0.11.3/doc/ref/api/manual/hvplot.hvPlot.labels.ipynb +0 -36
- hvplot-0.11.3/doc/ref/api/manual/hvplot.hvPlot.line.ipynb +0 -36
- hvplot-0.11.3/doc/ref/api/manual/hvplot.hvPlot.ohlc.ipynb +0 -36
- hvplot-0.11.3/doc/ref/api/manual/hvplot.hvPlot.paths.ipynb +0 -36
- hvplot-0.11.3/doc/ref/api/manual/hvplot.hvPlot.points.ipynb +0 -36
- hvplot-0.11.3/doc/ref/api/manual/hvplot.hvPlot.polygons.ipynb +0 -36
- hvplot-0.11.3/doc/ref/api/manual/hvplot.hvPlot.quadmesh.ipynb +0 -36
- hvplot-0.11.3/doc/ref/api/manual/hvplot.hvPlot.rgb.ipynb +0 -36
- hvplot-0.11.3/doc/ref/api/manual/hvplot.hvPlot.scatter.ipynb +0 -36
- hvplot-0.11.3/doc/ref/api/manual/hvplot.hvPlot.step.ipynb +0 -36
- hvplot-0.11.3/doc/ref/api/manual/hvplot.hvPlot.table.ipynb +0 -36
- hvplot-0.11.3/doc/ref/api/manual/hvplot.hvPlot.vectorfield.ipynb +0 -36
- hvplot-0.11.3/doc/ref/api/manual/hvplot.hvPlot.violin.ipynb +0 -36
- hvplot-0.11.3/doc/ref/api/manual/hvplot.plotting.andrews_curves.ipynb +0 -30
- hvplot-0.11.3/doc/ref/api/manual/hvplot.plotting.lag_plot.ipynb +0 -30
- hvplot-0.11.3/doc/ref/api/manual/hvplot.plotting.parallel_coordinates.ipynb +0 -30
- hvplot-0.11.3/doc/ref/api/manual/hvplot.plotting.scatter_matrix.ipynb +0 -30
- hvplot-0.11.3/doc/ref/plotting_options/data.ipynb +0 -60
- hvplot-0.11.3/doc/ref/plotting_options/index.md +0 -106
- hvplot-0.11.3/hvplot.egg-info/PKG-INFO +0 -259
- hvplot-0.11.3/hvplot.egg-info/SOURCES.txt +0 -235
- hvplot-0.11.3/hvplot.egg-info/dependency_links.txt +0 -1
- hvplot-0.11.3/hvplot.egg-info/entry_points.txt +0 -3
- hvplot-0.11.3/hvplot.egg-info/requires.txt +0 -118
- hvplot-0.11.3/hvplot.egg-info/top_level.txt +0 -1
- hvplot-0.11.3/pixi.toml +0 -271
- hvplot-0.11.3/setup.cfg +0 -4
- {hvplot-0.11.3 → hvplot-0.12.0a1}/.gitignore +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/LICENSE +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/_ext/backend_styling_options.py +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/_ext/plotting_options_table.py +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/_static/custom.css +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/_static/favicon.ico +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/_static/home/bokeh.gif +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/_static/home/dask.gif +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/_static/home/explorer.gif +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/_static/home/geo.gif +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/_static/home/geopandas.gif +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/_static/home/intake.gif +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/_static/home/interactive_hvplot.gif +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/_static/home/interactive_pandas.gif +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/_static/home/interactive_xarray.gif +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/_static/home/large_data.gif +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/_static/home/layout.gif +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/_static/home/matplotlib.png +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/_static/home/networkx.gif +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/_static/home/overlay.png +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/_static/home/pandas.gif +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/_static/home/plotly.gif +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/_static/home/widgets.gif +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/_static/home/xarray.gif +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/_static/images/heat_and_trees.png +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/_static/images/portfolio.png +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/_static/logo.png +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/_static/logo_horizontal.svg +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/_static/logo_stacked.svg +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/_static/patch_templates/sourcelink.html +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/about.md +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/assets/console.png +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/assets/console_server.gif +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/assets/diagram.png +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/assets/diagram.svg +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/assets/hvplot-wm.png +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/assets/streamz_demo.gif +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/governance/project-docs/CONTRIBUTING.md +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/governance/project-docs/GOVERNANCE.md +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/governance/project-docs/LICENSE.md +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/governance/project-docs/MEMBERS.md +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/ref/api/manual/hvplot.hvPlot.density.md +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/ref/api_compatibility/index.md +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/ref/api_compatibility/pandas/Pandas_API.ipynb +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/ref/data_libraries.ipynb +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/ref/plotting_extensions.ipynb +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/reference/geopandas/points.ipynb +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/reference/geopandas/polygons.ipynb +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/reference/tabular/andrewscurves.ipynb +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/reference/tabular/area.ipynb +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/reference/tabular/bar.ipynb +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/reference/tabular/barh.ipynb +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/reference/tabular/bivariate.ipynb +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/reference/tabular/box.ipynb +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/reference/tabular/errorbars.ipynb +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/reference/tabular/heatmap.ipynb +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/reference/tabular/hexbin.ipynb +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/reference/tabular/hist.ipynb +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/reference/tabular/kde.ipynb +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/reference/tabular/labels.ipynb +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/reference/tabular/lagplot.ipynb +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/reference/tabular/line.ipynb +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/reference/tabular/ohlc.ipynb +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/reference/tabular/parallelcoordinates.ipynb +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/reference/tabular/paths.ipynb +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/reference/tabular/scatter.ipynb +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/reference/tabular/scattermatrix.ipynb +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/reference/tabular/step.ipynb +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/reference/tabular/table.ipynb +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/reference/tabular/violin.ipynb +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/reference/xarray/bar.ipynb +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/reference/xarray/contour.ipynb +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/reference/xarray/contourf.ipynb +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/reference/xarray/hist.ipynb +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/reference/xarray/image.ipynb +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/reference/xarray/kde.ipynb +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/reference/xarray/line.ipynb +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/reference/xarray/quadmesh.ipynb +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/reference/xarray/rgb.ipynb +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/reference/xarray/vectorfield.ipynb +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/reference/xarray/violin.ipynb +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/releases.md +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/roadmap.md +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/topics.html +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/tutorials/index.md +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/user_guide/Explorer.ipynb +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/user_guide/Geographic_Data.ipynb +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/user_guide/Gridded_Data.ipynb +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/user_guide/Interactive.ipynb +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/user_guide/Introduction.ipynb +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/user_guide/Plotting.ipynb +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/user_guide/Plotting_Extensions.ipynb +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/user_guide/Plotting_with_Matplotlib.ipynb +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/user_guide/Plotting_with_Plotly.ipynb +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/user_guide/Statistical_Plots.ipynb +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/user_guide/Streaming.ipynb +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/user_guide/Subplots.ipynb +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/user_guide/Timeseries_Data.ipynb +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/user_guide/Viewing.ipynb +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/user_guide/Widgets.ipynb +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/user_guide/images/simple.svg +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/doc/user_guide/index.md +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/hvplot/backend_transforms.py +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/hvplot/cudf.py +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/hvplot/dask.py +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/hvplot/data/crime.csv +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/hvplot/datasets.yaml +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/hvplot/duckdb.py +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/hvplot/fugue.py +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/hvplot/ibis.py +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/hvplot/intake.py +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/hvplot/interactive.py +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/hvplot/networkx.py +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/hvplot/pandas.py +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/hvplot/polars.py +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/hvplot/sample_data.py +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/hvplot/streamz.py +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/hvplot/tests/__init__.py +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/hvplot/tests/conftest.py +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/hvplot/tests/data/README.md +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/hvplot/tests/data/RGB-red.byte.tif +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/hvplot/tests/plotting/__init__.py +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/hvplot/tests/plotting/testcore.py +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/hvplot/tests/plotting/testohlc.py +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/hvplot/tests/plotting/testscattermatrix.py +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/hvplot/tests/test_links.py +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/hvplot/tests/testbackend_transforms.py +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/hvplot/tests/testdocstring.py +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/hvplot/tests/testfugue.py +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/hvplot/tests/testgeowithoutgv.py +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/hvplot/tests/testgridplots.py +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/hvplot/tests/testibis.py +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/hvplot/tests/testinteractive.py +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/hvplot/tests/testnetworkx.py +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/hvplot/tests/testoverrides.py +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/hvplot/tests/testpanel.py +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/hvplot/tests/testpatch.py +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/hvplot/tests/testpatchsignature.py +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/hvplot/tests/testplotting.py +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/hvplot/tests/teststatplots.py +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/hvplot/tests/teststreaming.py +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/hvplot/tests/testtransforms.py +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/hvplot/tests/testui.py +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/hvplot/tests/testutil.py +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/hvplot/tests/util.py +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/hvplot/xarray.py +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/scripts/conda/build.sh +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/scripts/conda/recipe/meta.yaml +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/scripts/download_data.py +0 -0
- {hvplot-0.11.3 → hvplot-0.12.0a1}/scripts/sync_git_tags.py +0 -0
|
@@ -1,29 +1,27 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: hvplot
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.12.0a1
|
|
4
4
|
Summary: A high-level plotting API for the PyData ecosystem built on HoloViews.
|
|
5
|
-
Author-email: Philipp Rudiger <developers@holoviz.org>
|
|
6
|
-
Maintainer-email: HoloViz developers <developers@holoviz.org>
|
|
7
|
-
License: BSD
|
|
8
5
|
Project-URL: Homepage, https://hvplot.holoviz.org
|
|
9
6
|
Project-URL: Source, http://github.com/holoviz/hvplot
|
|
10
7
|
Project-URL: HoloViz, https://holoviz.org/
|
|
11
|
-
|
|
8
|
+
Author-email: Philipp Rudiger <developers@holoviz.org>
|
|
9
|
+
Maintainer-email: HoloViz developers <developers@holoviz.org>
|
|
10
|
+
License: BSD
|
|
11
|
+
License-File: LICENSE
|
|
12
12
|
Classifier: Development Status :: 5 - Production/Stable
|
|
13
|
-
Classifier:
|
|
13
|
+
Classifier: Intended Audience :: Developers
|
|
14
|
+
Classifier: Intended Audience :: Science/Research
|
|
15
|
+
Classifier: License :: OSI Approved :: BSD License
|
|
16
|
+
Classifier: Natural Language :: English
|
|
17
|
+
Classifier: Operating System :: OS Independent
|
|
14
18
|
Classifier: Programming Language :: Python :: 3.10
|
|
15
19
|
Classifier: Programming Language :: Python :: 3.11
|
|
16
20
|
Classifier: Programming Language :: Python :: 3.12
|
|
17
21
|
Classifier: Programming Language :: Python :: 3.13
|
|
18
|
-
Classifier: Operating System :: OS Independent
|
|
19
|
-
Classifier: Intended Audience :: Science/Research
|
|
20
|
-
Classifier: Intended Audience :: Developers
|
|
21
|
-
Classifier: Natural Language :: English
|
|
22
22
|
Classifier: Topic :: Scientific/Engineering
|
|
23
23
|
Classifier: Topic :: Software Development :: Libraries
|
|
24
|
-
Requires-Python: >=3.
|
|
25
|
-
Description-Content-Type: text/markdown
|
|
26
|
-
License-File: LICENSE
|
|
24
|
+
Requires-Python: >=3.10
|
|
27
25
|
Requires-Dist: bokeh>=3.1
|
|
28
26
|
Requires-Dist: colorcet>=2
|
|
29
27
|
Requires-Dist: holoviews>=1.19.0
|
|
@@ -32,103 +30,193 @@ Requires-Dist: packaging
|
|
|
32
30
|
Requires-Dist: pandas>=1.3
|
|
33
31
|
Requires-Dist: panel>=1.0
|
|
34
32
|
Requires-Dist: param<3.0,>=1.12.0
|
|
35
|
-
Provides-Extra:
|
|
36
|
-
Requires-Dist:
|
|
37
|
-
|
|
38
|
-
Requires-Dist:
|
|
39
|
-
Requires-Dist:
|
|
40
|
-
Requires-Dist:
|
|
41
|
-
Requires-Dist:
|
|
42
|
-
Requires-Dist:
|
|
43
|
-
Requires-Dist:
|
|
44
|
-
Requires-Dist:
|
|
45
|
-
Requires-Dist:
|
|
46
|
-
Requires-Dist:
|
|
47
|
-
Requires-Dist:
|
|
48
|
-
Requires-Dist:
|
|
49
|
-
Requires-Dist:
|
|
50
|
-
Requires-Dist:
|
|
51
|
-
Requires-Dist:
|
|
52
|
-
|
|
53
|
-
Requires-Dist:
|
|
54
|
-
Requires-Dist:
|
|
55
|
-
Requires-Dist:
|
|
56
|
-
Requires-Dist:
|
|
57
|
-
Requires-Dist:
|
|
58
|
-
Requires-Dist:
|
|
59
|
-
Requires-Dist:
|
|
60
|
-
Requires-Dist:
|
|
33
|
+
Provides-Extra: dev-extras
|
|
34
|
+
Requires-Dist: setuptools-scm>=6; extra == 'dev-extras'
|
|
35
|
+
Provides-Extra: doc
|
|
36
|
+
Requires-Dist: bokeh-sampledata; (python_version >= '3.10') and extra == 'doc'
|
|
37
|
+
Requires-Dist: dask[dataframe]<2025.1.0,>=2021.3.0; extra == 'doc'
|
|
38
|
+
Requires-Dist: datashader>=0.6.5; extra == 'doc'
|
|
39
|
+
Requires-Dist: duckdb; extra == 'doc'
|
|
40
|
+
Requires-Dist: fugue-sql-antlr>=0.2.0; extra == 'doc'
|
|
41
|
+
Requires-Dist: fugue[sql]; extra == 'doc'
|
|
42
|
+
Requires-Dist: geodatasets>=2023.12.0; extra == 'doc'
|
|
43
|
+
Requires-Dist: hvsampledata>=0.1.4a2; extra == 'doc'
|
|
44
|
+
Requires-Dist: ibis-framework[duckdb]; extra == 'doc'
|
|
45
|
+
Requires-Dist: intake-parquet>=0.2.3; extra == 'doc'
|
|
46
|
+
Requires-Dist: intake-xarray<2,>=0.5.0; extra == 'doc'
|
|
47
|
+
Requires-Dist: intake<2.0.0,>=0.6.5; extra == 'doc'
|
|
48
|
+
Requires-Dist: ipywidgets; extra == 'doc'
|
|
49
|
+
Requires-Dist: jinja2; extra == 'doc'
|
|
50
|
+
Requires-Dist: matplotlib; extra == 'doc'
|
|
51
|
+
Requires-Dist: nbsite>=0.9.0a10; extra == 'doc'
|
|
52
|
+
Requires-Dist: networkx>=2.6.3; extra == 'doc'
|
|
53
|
+
Requires-Dist: notebook>=5.4; extra == 'doc'
|
|
54
|
+
Requires-Dist: numba>=0.51.0; extra == 'doc'
|
|
55
|
+
Requires-Dist: numpydoc; extra == 'doc'
|
|
56
|
+
Requires-Dist: pillow>=8.2.0; extra == 'doc'
|
|
57
|
+
Requires-Dist: plotly; extra == 'doc'
|
|
58
|
+
Requires-Dist: polars; extra == 'doc'
|
|
59
|
+
Requires-Dist: pooch>=1.6.0; extra == 'doc'
|
|
60
|
+
Requires-Dist: qpd>=0.4.4; extra == 'doc'
|
|
61
|
+
Requires-Dist: s3fs>=2022.1.0; extra == 'doc'
|
|
62
|
+
Requires-Dist: scikit-image>=0.17.2; extra == 'doc'
|
|
63
|
+
Requires-Dist: scikit-learn>=1.4.0; extra == 'doc'
|
|
64
|
+
Requires-Dist: scipy>=1.5.3; extra == 'doc'
|
|
65
|
+
Requires-Dist: selenium>=3.141.0; extra == 'doc'
|
|
66
|
+
Requires-Dist: sphinxcontrib-mermaid; extra == 'doc'
|
|
67
|
+
Requires-Dist: sphinxext-rediraffe; extra == 'doc'
|
|
68
|
+
Requires-Dist: sqlglot; extra == 'doc'
|
|
69
|
+
Requires-Dist: streamz>=0.3.0; extra == 'doc'
|
|
70
|
+
Requires-Dist: xarray>=0.18.2; extra == 'doc'
|
|
71
|
+
Requires-Dist: xyzservices>=2022.9.0; extra == 'doc'
|
|
72
|
+
Provides-Extra: examples
|
|
73
|
+
Requires-Dist: bokeh-sampledata; (python_version >= '3.10') and extra == 'examples'
|
|
74
|
+
Requires-Dist: dask[dataframe]<2025.1.0,>=2021.3.0; extra == 'examples'
|
|
75
|
+
Requires-Dist: datashader>=0.6.5; extra == 'examples'
|
|
76
|
+
Requires-Dist: duckdb; extra == 'examples'
|
|
77
|
+
Requires-Dist: fugue-sql-antlr>=0.2.0; extra == 'examples'
|
|
78
|
+
Requires-Dist: fugue[sql]; extra == 'examples'
|
|
79
|
+
Requires-Dist: geodatasets>=2023.12.0; extra == 'examples'
|
|
80
|
+
Requires-Dist: hvsampledata>=0.1.4a2; extra == 'examples'
|
|
81
|
+
Requires-Dist: ibis-framework[duckdb]; extra == 'examples'
|
|
82
|
+
Requires-Dist: intake-parquet>=0.2.3; extra == 'examples'
|
|
83
|
+
Requires-Dist: intake-xarray<2,>=0.5.0; extra == 'examples'
|
|
84
|
+
Requires-Dist: intake<2.0.0,>=0.6.5; extra == 'examples'
|
|
85
|
+
Requires-Dist: ipywidgets; extra == 'examples'
|
|
86
|
+
Requires-Dist: jinja2; extra == 'examples'
|
|
87
|
+
Requires-Dist: matplotlib; extra == 'examples'
|
|
88
|
+
Requires-Dist: networkx>=2.6.3; extra == 'examples'
|
|
89
|
+
Requires-Dist: notebook>=5.4; extra == 'examples'
|
|
90
|
+
Requires-Dist: numba>=0.51.0; extra == 'examples'
|
|
91
|
+
Requires-Dist: pillow>=8.2.0; extra == 'examples'
|
|
92
|
+
Requires-Dist: plotly; extra == 'examples'
|
|
93
|
+
Requires-Dist: polars; extra == 'examples'
|
|
94
|
+
Requires-Dist: pooch>=1.6.0; extra == 'examples'
|
|
95
|
+
Requires-Dist: qpd>=0.4.4; extra == 'examples'
|
|
96
|
+
Requires-Dist: s3fs>=2022.1.0; extra == 'examples'
|
|
97
|
+
Requires-Dist: scikit-image>=0.17.2; extra == 'examples'
|
|
98
|
+
Requires-Dist: scikit-learn>=1.4.0; extra == 'examples'
|
|
99
|
+
Requires-Dist: scipy>=1.5.3; extra == 'examples'
|
|
100
|
+
Requires-Dist: selenium>=3.141.0; extra == 'examples'
|
|
101
|
+
Requires-Dist: sqlglot; extra == 'examples'
|
|
102
|
+
Requires-Dist: streamz>=0.3.0; extra == 'examples'
|
|
103
|
+
Requires-Dist: xarray>=0.18.2; extra == 'examples'
|
|
104
|
+
Requires-Dist: xyzservices>=2022.9.0; extra == 'examples'
|
|
105
|
+
Provides-Extra: examples-tests
|
|
106
|
+
Requires-Dist: bokeh-sampledata; (python_version >= '3.10') and extra == 'examples-tests'
|
|
107
|
+
Requires-Dist: dask[dataframe]<2025.1.0,>=2021.3.0; extra == 'examples-tests'
|
|
108
|
+
Requires-Dist: datashader>=0.6.5; extra == 'examples-tests'
|
|
109
|
+
Requires-Dist: duckdb; extra == 'examples-tests'
|
|
110
|
+
Requires-Dist: fugue-sql-antlr>=0.2.0; extra == 'examples-tests'
|
|
111
|
+
Requires-Dist: fugue[sql]; extra == 'examples-tests'
|
|
112
|
+
Requires-Dist: geodatasets>=2023.12.0; extra == 'examples-tests'
|
|
113
|
+
Requires-Dist: hvsampledata>=0.1.4a2; extra == 'examples-tests'
|
|
114
|
+
Requires-Dist: ibis-framework[duckdb]; extra == 'examples-tests'
|
|
115
|
+
Requires-Dist: intake-parquet>=0.2.3; extra == 'examples-tests'
|
|
116
|
+
Requires-Dist: intake-xarray<2,>=0.5.0; extra == 'examples-tests'
|
|
117
|
+
Requires-Dist: intake<2.0.0,>=0.6.5; extra == 'examples-tests'
|
|
118
|
+
Requires-Dist: ipywidgets; extra == 'examples-tests'
|
|
119
|
+
Requires-Dist: jinja2; extra == 'examples-tests'
|
|
120
|
+
Requires-Dist: matplotlib; extra == 'examples-tests'
|
|
121
|
+
Requires-Dist: nbval; extra == 'examples-tests'
|
|
122
|
+
Requires-Dist: networkx>=2.6.3; extra == 'examples-tests'
|
|
123
|
+
Requires-Dist: notebook>=5.4; extra == 'examples-tests'
|
|
124
|
+
Requires-Dist: numba>=0.51.0; extra == 'examples-tests'
|
|
125
|
+
Requires-Dist: pillow>=8.2.0; extra == 'examples-tests'
|
|
126
|
+
Requires-Dist: plotly; extra == 'examples-tests'
|
|
127
|
+
Requires-Dist: polars; extra == 'examples-tests'
|
|
128
|
+
Requires-Dist: pooch>=1.6.0; extra == 'examples-tests'
|
|
129
|
+
Requires-Dist: pytest-xdist; extra == 'examples-tests'
|
|
130
|
+
Requires-Dist: qpd>=0.4.4; extra == 'examples-tests'
|
|
131
|
+
Requires-Dist: s3fs>=2022.1.0; extra == 'examples-tests'
|
|
132
|
+
Requires-Dist: scikit-image>=0.17.2; extra == 'examples-tests'
|
|
133
|
+
Requires-Dist: scikit-learn>=1.4.0; extra == 'examples-tests'
|
|
134
|
+
Requires-Dist: scipy>=1.5.3; extra == 'examples-tests'
|
|
135
|
+
Requires-Dist: selenium>=3.141.0; extra == 'examples-tests'
|
|
136
|
+
Requires-Dist: sqlglot; extra == 'examples-tests'
|
|
137
|
+
Requires-Dist: streamz>=0.3.0; extra == 'examples-tests'
|
|
138
|
+
Requires-Dist: xarray>=0.18.2; extra == 'examples-tests'
|
|
139
|
+
Requires-Dist: xyzservices>=2022.9.0; extra == 'examples-tests'
|
|
61
140
|
Provides-Extra: fugue-sql
|
|
62
|
-
Requires-Dist:
|
|
63
|
-
Requires-Dist:
|
|
64
|
-
Requires-Dist:
|
|
65
|
-
Requires-Dist:
|
|
141
|
+
Requires-Dist: fugue-sql-antlr>=0.2.0; extra == 'fugue-sql'
|
|
142
|
+
Requires-Dist: jinja2; extra == 'fugue-sql'
|
|
143
|
+
Requires-Dist: qpd>=0.4.4; extra == 'fugue-sql'
|
|
144
|
+
Requires-Dist: sqlglot; extra == 'fugue-sql'
|
|
66
145
|
Provides-Extra: geo
|
|
67
|
-
Requires-Dist: cartopy; extra ==
|
|
68
|
-
Requires-Dist: fiona; extra ==
|
|
69
|
-
Requires-Dist: geopandas; extra ==
|
|
70
|
-
Requires-Dist: geoviews>=1.9.0; extra ==
|
|
71
|
-
Requires-Dist: pyproj; extra ==
|
|
72
|
-
Requires-Dist: rasterio; extra ==
|
|
73
|
-
Requires-Dist: rioxarray; extra ==
|
|
74
|
-
Requires-Dist: spatialpandas>=0.4.3; extra ==
|
|
146
|
+
Requires-Dist: cartopy; extra == 'geo'
|
|
147
|
+
Requires-Dist: fiona; extra == 'geo'
|
|
148
|
+
Requires-Dist: geopandas; extra == 'geo'
|
|
149
|
+
Requires-Dist: geoviews>=1.9.0; extra == 'geo'
|
|
150
|
+
Requires-Dist: pyproj; extra == 'geo'
|
|
151
|
+
Requires-Dist: rasterio; extra == 'geo'
|
|
152
|
+
Requires-Dist: rioxarray; extra == 'geo'
|
|
153
|
+
Requires-Dist: spatialpandas>=0.4.3; extra == 'geo'
|
|
75
154
|
Provides-Extra: graphviz
|
|
76
|
-
Requires-Dist: pygraphviz; extra ==
|
|
77
|
-
Provides-Extra: examples
|
|
78
|
-
Requires-Dist: dask[dataframe]<2025.1.0,>=2021.3.0; extra == "examples"
|
|
79
|
-
Requires-Dist: datashader>=0.6.5; extra == "examples"
|
|
80
|
-
Requires-Dist: duckdb; extra == "examples"
|
|
81
|
-
Requires-Dist: fugue[sql]; extra == "examples"
|
|
82
|
-
Requires-Dist: hvplot[fugue-sql]; extra == "examples"
|
|
83
|
-
Requires-Dist: ibis-framework[duckdb]; extra == "examples"
|
|
84
|
-
Requires-Dist: intake-parquet>=0.2.3; extra == "examples"
|
|
85
|
-
Requires-Dist: intake-xarray<2,>=0.5.0; extra == "examples"
|
|
86
|
-
Requires-Dist: intake<2.0.0,>=0.6.5; extra == "examples"
|
|
87
|
-
Requires-Dist: ipywidgets; extra == "examples"
|
|
88
|
-
Requires-Dist: networkx>=2.6.3; extra == "examples"
|
|
89
|
-
Requires-Dist: matplotlib; extra == "examples"
|
|
90
|
-
Requires-Dist: notebook>=5.4; extra == "examples"
|
|
91
|
-
Requires-Dist: numba>=0.51.0; extra == "examples"
|
|
92
|
-
Requires-Dist: pillow>=8.2.0; extra == "examples"
|
|
93
|
-
Requires-Dist: plotly; extra == "examples"
|
|
94
|
-
Requires-Dist: polars; extra == "examples"
|
|
95
|
-
Requires-Dist: pooch>=1.6.0; extra == "examples"
|
|
96
|
-
Requires-Dist: s3fs>=2022.1.0; extra == "examples"
|
|
97
|
-
Requires-Dist: scikit-image>=0.17.2; extra == "examples"
|
|
98
|
-
Requires-Dist: scipy>=1.5.3; extra == "examples"
|
|
99
|
-
Requires-Dist: selenium>=3.141.0; extra == "examples"
|
|
100
|
-
Requires-Dist: streamz>=0.3.0; extra == "examples"
|
|
101
|
-
Requires-Dist: xarray>=0.18.2; extra == "examples"
|
|
102
|
-
Requires-Dist: xyzservices>=2022.9.0; extra == "examples"
|
|
103
|
-
Requires-Dist: geodatasets>=2023.12.0; extra == "examples"
|
|
104
|
-
Requires-Dist: bokeh_sampledata; python_version >= "3.10" and extra == "examples"
|
|
105
|
-
Requires-Dist: hvsampledata>=0.1.1; extra == "examples"
|
|
106
|
-
Provides-Extra: tests-nb
|
|
107
|
-
Requires-Dist: pytest-xdist; extra == "tests-nb"
|
|
108
|
-
Requires-Dist: nbval; extra == "tests-nb"
|
|
109
|
-
Provides-Extra: examples-tests
|
|
110
|
-
Requires-Dist: hvplot[examples]; extra == "examples-tests"
|
|
111
|
-
Requires-Dist: hvplot[tests-nb]; extra == "examples-tests"
|
|
112
|
-
Provides-Extra: doc
|
|
113
|
-
Requires-Dist: hvplot[examples]; extra == "doc"
|
|
114
|
-
Requires-Dist: nbsite>=0.9.0a2; extra == "doc"
|
|
115
|
-
Requires-Dist: sphinxext-rediraffe; extra == "doc"
|
|
116
|
-
Requires-Dist: numpydoc; extra == "doc"
|
|
117
|
-
Requires-Dist: sphinxcontrib-mermaid; extra == "doc"
|
|
155
|
+
Requires-Dist: pygraphviz; extra == 'graphviz'
|
|
118
156
|
Provides-Extra: hvdev
|
|
119
|
-
Requires-Dist: colorcet>=0.0.1a1; extra ==
|
|
120
|
-
Requires-Dist: datashader>=0.0.1a1; extra ==
|
|
121
|
-
Requires-Dist: holoviews>=0.0.1a1; extra ==
|
|
122
|
-
Requires-Dist: panel>=0.0.1a1; extra ==
|
|
123
|
-
Requires-Dist: param>=0.0.1a1; extra ==
|
|
124
|
-
Requires-Dist:
|
|
157
|
+
Requires-Dist: colorcet>=0.0.1a1; extra == 'hvdev'
|
|
158
|
+
Requires-Dist: datashader>=0.0.1a1; extra == 'hvdev'
|
|
159
|
+
Requires-Dist: holoviews>=0.0.1a1; extra == 'hvdev'
|
|
160
|
+
Requires-Dist: panel>=0.0.1a1; extra == 'hvdev'
|
|
161
|
+
Requires-Dist: param>=0.0.1a1; extra == 'hvdev'
|
|
162
|
+
Requires-Dist: pyviz-comms>=0.0.1a1; extra == 'hvdev'
|
|
125
163
|
Provides-Extra: hvdev-geo
|
|
126
|
-
Requires-Dist: geoviews>=0.0.1a1; extra ==
|
|
127
|
-
Provides-Extra:
|
|
128
|
-
Requires-Dist:
|
|
129
|
-
|
|
164
|
+
Requires-Dist: geoviews>=0.0.1a1; extra == 'hvdev-geo'
|
|
165
|
+
Provides-Extra: tests
|
|
166
|
+
Requires-Dist: bokeh-sampledata; (python_version >= '3.10') and extra == 'tests'
|
|
167
|
+
Requires-Dist: cftime; extra == 'tests'
|
|
168
|
+
Requires-Dist: dask; extra == 'tests'
|
|
169
|
+
Requires-Dist: dask[dataframe]<2025.1.0; extra == 'tests'
|
|
170
|
+
Requires-Dist: duckdb; extra == 'tests'
|
|
171
|
+
Requires-Dist: fugue-sql-antlr>=0.2.0; extra == 'tests'
|
|
172
|
+
Requires-Dist: fugue[sql]; extra == 'tests'
|
|
173
|
+
Requires-Dist: ibis-framework[duckdb]; extra == 'tests'
|
|
174
|
+
Requires-Dist: ipywidgets; extra == 'tests'
|
|
175
|
+
Requires-Dist: jinja2; extra == 'tests'
|
|
176
|
+
Requires-Dist: matplotlib; extra == 'tests'
|
|
177
|
+
Requires-Dist: numpydoc; extra == 'tests'
|
|
178
|
+
Requires-Dist: parameterized; extra == 'tests'
|
|
179
|
+
Requires-Dist: plotly; extra == 'tests'
|
|
180
|
+
Requires-Dist: polars; extra == 'tests'
|
|
181
|
+
Requires-Dist: pooch; extra == 'tests'
|
|
182
|
+
Requires-Dist: pre-commit; extra == 'tests'
|
|
183
|
+
Requires-Dist: psutil; extra == 'tests'
|
|
184
|
+
Requires-Dist: pytest; extra == 'tests'
|
|
185
|
+
Requires-Dist: pytest-cov; extra == 'tests'
|
|
186
|
+
Requires-Dist: qpd>=0.4.4; extra == 'tests'
|
|
187
|
+
Requires-Dist: ruff; extra == 'tests'
|
|
188
|
+
Requires-Dist: scipy; extra == 'tests'
|
|
189
|
+
Requires-Dist: spatialpandas; extra == 'tests'
|
|
190
|
+
Requires-Dist: sqlglot; extra == 'tests'
|
|
191
|
+
Requires-Dist: xarray; extra == 'tests'
|
|
192
|
+
Provides-Extra: tests-core
|
|
193
|
+
Requires-Dist: bokeh-sampledata; (python_version >= '3.10') and extra == 'tests-core'
|
|
194
|
+
Requires-Dist: cftime; extra == 'tests-core'
|
|
195
|
+
Requires-Dist: dask[dataframe]<2025.1.0; extra == 'tests-core'
|
|
196
|
+
Requires-Dist: ipywidgets; extra == 'tests-core'
|
|
197
|
+
Requires-Dist: matplotlib; extra == 'tests-core'
|
|
198
|
+
Requires-Dist: numpydoc; extra == 'tests-core'
|
|
199
|
+
Requires-Dist: parameterized; extra == 'tests-core'
|
|
200
|
+
Requires-Dist: plotly; extra == 'tests-core'
|
|
201
|
+
Requires-Dist: pooch; extra == 'tests-core'
|
|
202
|
+
Requires-Dist: pre-commit; extra == 'tests-core'
|
|
203
|
+
Requires-Dist: psutil; extra == 'tests-core'
|
|
204
|
+
Requires-Dist: pytest; extra == 'tests-core'
|
|
205
|
+
Requires-Dist: pytest-cov; extra == 'tests-core'
|
|
206
|
+
Requires-Dist: ruff; extra == 'tests-core'
|
|
207
|
+
Requires-Dist: scipy; extra == 'tests-core'
|
|
208
|
+
Requires-Dist: xarray; extra == 'tests-core'
|
|
209
|
+
Provides-Extra: tests-nb
|
|
210
|
+
Requires-Dist: nbval; extra == 'tests-nb'
|
|
211
|
+
Requires-Dist: pytest-xdist; extra == 'tests-nb'
|
|
212
|
+
Description-Content-Type: text/markdown
|
|
130
213
|
|
|
131
|
-
|
|
214
|
+
<p align="center">
|
|
215
|
+
<a href="https://hvplot.holoviz.org"><img src="https://github.com/holoviz/hvplot/blob/main/doc/_static/logo_horizontal.png?raw=true" alt="hvPlot"></a>
|
|
216
|
+
</p>
|
|
217
|
+
<p align="center">
|
|
218
|
+
<em>hvPlot makes data analysis and visualization simple</em>
|
|
219
|
+
</p>
|
|
132
220
|
|
|
133
221
|
| | |
|
|
134
222
|
| --- | --- |
|
|
@@ -1,4 +1,9 @@
|
|
|
1
|
-
|
|
1
|
+
<p align="center">
|
|
2
|
+
<a href="https://hvplot.holoviz.org"><img src="https://github.com/holoviz/hvplot/blob/main/doc/_static/logo_horizontal.png?raw=true" alt="hvPlot"></a>
|
|
3
|
+
</p>
|
|
4
|
+
<p align="center">
|
|
5
|
+
<em>hvPlot makes data analysis and visualization simple</em>
|
|
6
|
+
</p>
|
|
2
7
|
|
|
3
8
|
| | |
|
|
4
9
|
| --- | --- |
|
|
Binary file
|
|
@@ -23,6 +23,9 @@ description = 'A high-level plotting API for the PyData ecosystem built on HoloV
|
|
|
23
23
|
version = release = base_version(hvplot.__version__) # noqa
|
|
24
24
|
nbbuild_cell_timeout = 600
|
|
25
25
|
|
|
26
|
+
# Useful for SEO on a versioned site
|
|
27
|
+
html_baseurl = 'https://hvplot.holoviz.org/en/docs/latest/'
|
|
28
|
+
|
|
26
29
|
exclude_patterns = ['governance']
|
|
27
30
|
|
|
28
31
|
html_static_path += ['_static'] # noqa
|
|
@@ -36,9 +39,14 @@ html_css_files += ['custom.css'] # noqa
|
|
|
36
39
|
html_js_files = [
|
|
37
40
|
'https://cdnjs.cloudflare.com/ajax/libs/require.js/2.3.4/require.min.js',
|
|
38
41
|
]
|
|
39
|
-
|
|
42
|
+
switcher_version = (
|
|
43
|
+
os.getenv('VERSION') or 'dev'
|
|
44
|
+
if any(pr in hvplot.__version__ for pr in ('a', 'b', 'rc', 'dev'))
|
|
45
|
+
else version
|
|
46
|
+
)
|
|
40
47
|
html_theme_options.update( # noqa
|
|
41
48
|
{
|
|
49
|
+
'navbar_start': ['navbar-logo', 'version-switcher'],
|
|
42
50
|
'use_edit_page_button': True,
|
|
43
51
|
'github_url': 'https://github.com/holoviz/hvplot',
|
|
44
52
|
'icon_links': [
|
|
@@ -60,6 +68,11 @@ html_theme_options.update( # noqa
|
|
|
60
68
|
],
|
|
61
69
|
'pygments_dark_style': 'material',
|
|
62
70
|
# 'announcement': "hvPlot 0.11 has just been released! Checkout the <a href='https://blog.holoviz.org/posts/hvplot_release_0.11/'>blog post</a> and support hvPlot by giving it a 🌟 on <a href='https://github.com/holoviz/hvplot'>Github</a>.",
|
|
71
|
+
'switcher': {
|
|
72
|
+
'json_url': 'https://hvplot.holoviz.org/switcher.json',
|
|
73
|
+
'version_match': switcher_version,
|
|
74
|
+
},
|
|
75
|
+
'show_version_warning_banner': True,
|
|
63
76
|
}
|
|
64
77
|
)
|
|
65
78
|
|
|
@@ -79,6 +92,7 @@ extensions += [ # noqa
|
|
|
79
92
|
'sphinxext.rediraffe',
|
|
80
93
|
'numpydoc',
|
|
81
94
|
'sphinxcontrib.mermaid',
|
|
95
|
+
'sphinx.ext.intersphinx',
|
|
82
96
|
# Custom extensions
|
|
83
97
|
'backend_styling_options',
|
|
84
98
|
'plotting_options_table',
|
|
@@ -98,7 +112,7 @@ nbsite_gallery_conf = {
|
|
|
98
112
|
'examples_dir': '.',
|
|
99
113
|
'galleries': {
|
|
100
114
|
'reference': {
|
|
101
|
-
'title': '
|
|
115
|
+
'title': 'Gallery',
|
|
102
116
|
'intro': (
|
|
103
117
|
'Find the list of supported libraries on `this page <../ref/data_libraries.html>`_.'
|
|
104
118
|
),
|
|
@@ -208,15 +222,17 @@ autosummary_generate = True
|
|
|
208
222
|
# autosummary_generate_overwrite = False
|
|
209
223
|
|
|
210
224
|
intersphinx_mapping = {
|
|
225
|
+
'cartopy': ('https://scitools.org.uk/cartopy/docs/latest/', None),
|
|
211
226
|
'holoviews': ('https://holoviews.org/', None),
|
|
212
227
|
'pandas': (
|
|
213
228
|
'https://pandas.pydata.org/pandas-docs/stable/',
|
|
214
229
|
'https://pandas.pydata.org/pandas-docs/stable/objects.inv',
|
|
215
230
|
),
|
|
216
231
|
'panel': ('https://panel.holoviz.org/', None),
|
|
232
|
+
'numpy': ('https://numpy.org/doc/stable/', None),
|
|
233
|
+
'xarray': ('https://docs.xarray.dev/en/stable/', None),
|
|
234
|
+
'pyproj': ('https://pyproj4.github.io/pyproj/stable/', None),
|
|
217
235
|
}
|
|
218
|
-
# See https://docs.readthedocs.com/platform/stable/guides/intersphinx.html
|
|
219
|
-
intersphinx_disabled_reftypes = ['*']
|
|
220
236
|
|
|
221
237
|
# To avoid this warning
|
|
222
238
|
# hvplot/ui.py:docstring of hvplot.ui.hvPlotExplorer:43: WARNING: autosummary: stub file not found 'hvplot.ui.hvPlotExplorer.hvplot'. Check your autosummary_generate setting.
|
|
@@ -37,12 +37,6 @@ if not find_spec('geoviews'):
|
|
|
37
37
|
'user_guide/Integrations.ipynb',
|
|
38
38
|
]
|
|
39
39
|
|
|
40
|
-
# Gives weird solve on Python 3.9
|
|
41
|
-
if not find_spec('ibis') or sys.version_info[:2] == (3, 9):
|
|
42
|
-
collect_ignore_glob += [
|
|
43
|
-
'ref/data_libraries.ipynb',
|
|
44
|
-
]
|
|
45
|
-
|
|
46
40
|
try:
|
|
47
41
|
webdriver_control.create()
|
|
48
42
|
except RuntimeError:
|
|
@@ -174,12 +174,12 @@ pixi run test-unit
|
|
|
174
174
|
:::{admonition} Advanced usage
|
|
175
175
|
:class: tip
|
|
176
176
|
|
|
177
|
-
The task is available in the following environments: `test-
|
|
177
|
+
The task is available in the following environments: `test-310`, `test-311`, `test-312`, `test-313`, and `test-core`. Where the first ones have the same environments except for different Python versions, and `test-core` only has a core set of dependencies.
|
|
178
178
|
|
|
179
|
-
You can run the task in a specific environment with the `-e` flag. For example, to run the `test-unit` task in the `test-
|
|
179
|
+
You can run the task in a specific environment with the `-e` flag. For example, to run the `test-unit` task in the `test-313` environment, you can run:
|
|
180
180
|
|
|
181
181
|
```bash
|
|
182
|
-
pixi run -e test-
|
|
182
|
+
pixi run -e test-313 test-unit
|
|
183
183
|
```
|
|
184
184
|
|
|
185
185
|
:::
|
|
@@ -192,11 +192,18 @@ The explorer interface can easily be created from the `hvPlot` / `.hvplot` names
|
|
|
192
192
|
.. currentmodule:: hvplot
|
|
193
193
|
|
|
194
194
|
.. autosummary::
|
|
195
|
-
:toctree: generated/
|
|
196
195
|
|
|
197
196
|
hvPlot.explorer
|
|
198
197
|
```
|
|
199
198
|
|
|
199
|
+
```{toctree}
|
|
200
|
+
:hidden: true
|
|
201
|
+
:maxdepth: 2
|
|
202
|
+
:titlesonly: true
|
|
203
|
+
|
|
204
|
+
hvplot.hvPlot.explorer <manual/hvplot.hvPlot.explorer>
|
|
205
|
+
```
|
|
206
|
+
|
|
200
207
|
It is also available from the top-level `explorer` function:
|
|
201
208
|
|
|
202
209
|
```{eval-rst}
|
|
@@ -0,0 +1,155 @@
|
|
|
1
|
+
{
|
|
2
|
+
"cells": [
|
|
3
|
+
{
|
|
4
|
+
"cell_type": "markdown",
|
|
5
|
+
"metadata": {},
|
|
6
|
+
"source": [
|
|
7
|
+
"# hvPlot.area"
|
|
8
|
+
]
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
"cell_type": "markdown",
|
|
12
|
+
"metadata": {},
|
|
13
|
+
"source": [
|
|
14
|
+
"```{eval-rst}\n",
|
|
15
|
+
".. currentmodule:: hvplot\n",
|
|
16
|
+
"\n",
|
|
17
|
+
".. automethod:: hvPlot.area\n",
|
|
18
|
+
"```\n",
|
|
19
|
+
"\n",
|
|
20
|
+
"## Backend-specific styling options\n",
|
|
21
|
+
"\n",
|
|
22
|
+
"```{eval-rst}\n",
|
|
23
|
+
".. backend-styling-options:: area\n",
|
|
24
|
+
"```\n",
|
|
25
|
+
"\n",
|
|
26
|
+
"## Examples \n",
|
|
27
|
+
"\n",
|
|
28
|
+
"### Simple area plot"
|
|
29
|
+
]
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"cell_type": "code",
|
|
33
|
+
"execution_count": null,
|
|
34
|
+
"metadata": {},
|
|
35
|
+
"outputs": [],
|
|
36
|
+
"source": [
|
|
37
|
+
"import hvplot.pandas # noqa\n",
|
|
38
|
+
"import pandas as pd\n",
|
|
39
|
+
"\n",
|
|
40
|
+
"df = pd.DataFrame({\"x\": [0, 1, 2, 3], \"y\": [0, 1, 4, 9]})\n",
|
|
41
|
+
"\n",
|
|
42
|
+
"df.hvplot.area(x=\"x\", y=\"y\")"
|
|
43
|
+
]
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"cell_type": "markdown",
|
|
47
|
+
"metadata": {},
|
|
48
|
+
"source": [
|
|
49
|
+
"### Single area for a timeseries\n",
|
|
50
|
+
"\n",
|
|
51
|
+
"This example displays the area under Apple’s stock adjusted closing price over time."
|
|
52
|
+
]
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"cell_type": "code",
|
|
56
|
+
"execution_count": null,
|
|
57
|
+
"metadata": {},
|
|
58
|
+
"outputs": [],
|
|
59
|
+
"source": [
|
|
60
|
+
"import hvplot.pandas # noqa\n",
|
|
61
|
+
"\n",
|
|
62
|
+
"df = hvplot.sampledata.apple_stocks(\"pandas\")\n",
|
|
63
|
+
"\n",
|
|
64
|
+
"df.hvplot.area(x=\"date\", y=\"adj_close\", color=\"#1e85f7\", alpha=0.5, height=300)"
|
|
65
|
+
]
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"cell_type": "markdown",
|
|
69
|
+
"metadata": {},
|
|
70
|
+
"source": [
|
|
71
|
+
"### Stacked area for multiple series\n",
|
|
72
|
+
"\n",
|
|
73
|
+
"This example shows stacked areas for several tech company stock prices. `stack` is `True` by default."
|
|
74
|
+
]
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
"cell_type": "code",
|
|
78
|
+
"execution_count": null,
|
|
79
|
+
"metadata": {},
|
|
80
|
+
"outputs": [],
|
|
81
|
+
"source": [
|
|
82
|
+
"import hvplot.pandas # noqa\n",
|
|
83
|
+
"\n",
|
|
84
|
+
"df = hvplot.sampledata.stocks(\"pandas\")\n",
|
|
85
|
+
"\n",
|
|
86
|
+
"df.hvplot.area(x=\"date\", y=[\"Apple\", \"Amazon\", \"Netflix\"], alpha=0.4, ylim=(1, None))"
|
|
87
|
+
]
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"cell_type": "markdown",
|
|
91
|
+
"metadata": {},
|
|
92
|
+
"source": [
|
|
93
|
+
"### Non-stacked area for multiple series"
|
|
94
|
+
]
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
"cell_type": "markdown",
|
|
98
|
+
"metadata": {},
|
|
99
|
+
"source": [
|
|
100
|
+
"This example shows non-stacked areas for several tech company stock prices, by setting `stacked` to `False`. Note that `alpha` is automatically set to `0.5` in this case."
|
|
101
|
+
]
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
"cell_type": "code",
|
|
105
|
+
"execution_count": null,
|
|
106
|
+
"metadata": {},
|
|
107
|
+
"outputs": [],
|
|
108
|
+
"source": [
|
|
109
|
+
"import hvplot.pandas # noqa\n",
|
|
110
|
+
"\n",
|
|
111
|
+
"df = hvplot.sampledata.stocks(\"pandas\")\n",
|
|
112
|
+
"\n",
|
|
113
|
+
"df.hvplot.area(x=\"date\", y=[\"Apple\", \"Amazon\", \"Netflix\"], ylim=(1, None), stacked=False)"
|
|
114
|
+
]
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
"cell_type": "markdown",
|
|
118
|
+
"metadata": {},
|
|
119
|
+
"source": [
|
|
120
|
+
"### Area between two lines using y and y2\n",
|
|
121
|
+
"\n",
|
|
122
|
+
"This example fills the space between the low and high prices of Apple's stock, by setting `y` (low) and `y2` (high)."
|
|
123
|
+
]
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
"cell_type": "code",
|
|
127
|
+
"execution_count": null,
|
|
128
|
+
"metadata": {},
|
|
129
|
+
"outputs": [],
|
|
130
|
+
"source": [
|
|
131
|
+
"import hvplot.pandas # noqa\n",
|
|
132
|
+
"import pandas as pd\n",
|
|
133
|
+
"\n",
|
|
134
|
+
"df = hvplot.sampledata.apple_stocks(\"pandas\")\n",
|
|
135
|
+
"\n",
|
|
136
|
+
"df.hvplot.area(\n",
|
|
137
|
+
" x=\"date\",\n",
|
|
138
|
+
" y=\"low\",\n",
|
|
139
|
+
" y2=\"high\",\n",
|
|
140
|
+
" ylabel=\"Prices\",\n",
|
|
141
|
+
" xlim=(pd.Timestamp(\"2023-03-01\"), pd.Timestamp(\"2023-11-01\")),\n",
|
|
142
|
+
" ylim=(140, 200),\n",
|
|
143
|
+
")"
|
|
144
|
+
]
|
|
145
|
+
}
|
|
146
|
+
],
|
|
147
|
+
"metadata": {
|
|
148
|
+
"language_info": {
|
|
149
|
+
"name": "python",
|
|
150
|
+
"pygments_lexer": "ipython3"
|
|
151
|
+
}
|
|
152
|
+
},
|
|
153
|
+
"nbformat": 4,
|
|
154
|
+
"nbformat_minor": 4
|
|
155
|
+
}
|