hvplot 0.12.0a1__tar.gz → 0.12.1__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.
Files changed (285) hide show
  1. {hvplot-0.12.0a1 → hvplot-0.12.1}/.gitignore +1 -0
  2. {hvplot-0.12.0a1 → hvplot-0.12.1}/PKG-INFO +3 -3
  3. {hvplot-0.12.0a1 → hvplot-0.12.1}/README.md +1 -1
  4. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/conf.py +67 -9
  5. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/conftest.py +11 -6
  6. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/developer_guide.md +3 -1
  7. hvplot-0.12.1/doc/gallery/annotations/horizontal_bar_with_labels.ipynb +64 -0
  8. hvplot-0.12.1/doc/gallery/basic-charts/simple_area.ipynb +69 -0
  9. hvplot-0.12.1/doc/gallery/basic-charts/simple_bar.ipynb +70 -0
  10. hvplot-0.12.1/doc/gallery/basic-charts/simple_boxplot.ipynb +74 -0
  11. hvplot-0.12.1/doc/gallery/basic-charts/simple_heatmap.ipynb +77 -0
  12. hvplot-0.12.1/doc/gallery/basic-charts/simple_line.ipynb +69 -0
  13. hvplot-0.12.1/doc/gallery/basic-charts/simple_scatter.ipynb +67 -0
  14. hvplot-0.12.1/doc/gallery/basic-charts/simple_step.ipynb +69 -0
  15. hvplot-0.12.1/doc/gallery/big-data/large_vectorfield_downsampled.ipynb +147 -0
  16. hvplot-0.12.1/doc/gallery/categorical/category_bar.ipynb +87 -0
  17. hvplot-0.12.1/doc/gallery/categorical/category_heatmap.ipynb +83 -0
  18. hvplot-0.12.1/doc/gallery/categorical/grouped_bar.ipynb +87 -0
  19. hvplot-0.12.1/doc/gallery/categorical/horizontal_bar.ipynb +85 -0
  20. hvplot-0.12.1/doc/gallery/categorical/lollipop_plot.ipynb +98 -0
  21. hvplot-0.12.1/doc/gallery/categorical/stacked_bar.ipynb +89 -0
  22. hvplot-0.12.1/doc/gallery/categorical/strip_jitter.ipynb +91 -0
  23. hvplot-0.12.1/doc/gallery/geospatial/datashade_map.ipynb +102 -0
  24. hvplot-0.12.1/doc/gallery/geospatial/geopoints.ipynb +84 -0
  25. hvplot-0.12.1/doc/gallery/geospatial/map_overlay.ipynb +61 -0
  26. hvplot-0.12.1/doc/gallery/geospatial/paths_labels.ipynb +128 -0
  27. hvplot-0.12.1/doc/gallery/geospatial/polygon_map.ipynb +57 -0
  28. hvplot-0.12.1/doc/gallery/gridded/contour.ipynb +83 -0
  29. hvplot-0.12.1/doc/gallery/gridded/contourf.ipynb +87 -0
  30. hvplot-0.12.1/doc/gallery/gridded/image.ipynb +71 -0
  31. hvplot-0.12.1/doc/gallery/gridded/quadmesh.ipynb +87 -0
  32. hvplot-0.12.1/doc/gallery/gridded/rgb.ipynb +75 -0
  33. hvplot-0.12.1/doc/gallery/gridded/rgb_satellite_imagery.ipynb +74 -0
  34. hvplot-0.12.1/doc/gallery/gridded/vectorfield.ipynb +71 -0
  35. hvplot-0.12.1/doc/gallery/interactivity/app_bind.ipynb +79 -0
  36. hvplot-0.12.1/doc/gallery/interactivity/app_rx.ipynb +69 -0
  37. hvplot-0.12.1/doc/gallery/interactivity/groupby_widget.ipynb +84 -0
  38. hvplot-0.12.1/doc/gallery/multidimensional/andrews_curves.ipynb +87 -0
  39. hvplot-0.12.1/doc/gallery/multidimensional/groupby.ipynb +80 -0
  40. hvplot-0.12.1/doc/gallery/multidimensional/parallel_coordinates.ipynb +85 -0
  41. hvplot-0.12.1/doc/gallery/multidimensional/scatter_matrix.ipynb +54 -0
  42. hvplot-0.12.1/doc/gallery/multidimensional/scatter_multi.ipynb +79 -0
  43. hvplot-0.12.1/doc/gallery/statistical/bar_with_error_bars.ipynb +80 -0
  44. hvplot-0.12.1/doc/gallery/statistical/bivariate.ipynb +61 -0
  45. hvplot-0.12.1/doc/gallery/statistical/boxplot.ipynb +71 -0
  46. hvplot-0.12.1/doc/gallery/statistical/correlation_heatmap.ipynb +100 -0
  47. hvplot-0.12.1/doc/gallery/statistical/density_plot.ipynb +75 -0
  48. hvplot-0.12.1/doc/gallery/statistical/hexbin.ipynb +80 -0
  49. hvplot-0.12.1/doc/gallery/statistical/histogram.ipynb +79 -0
  50. hvplot-0.12.1/doc/gallery/statistical/horizontal_errorbars.ipynb +82 -0
  51. hvplot-0.12.1/doc/gallery/statistical/violin.ipynb +71 -0
  52. hvplot-0.12.1/doc/gallery/statistical/violin_scatter.ipynb +98 -0
  53. hvplot-0.12.1/doc/gallery/time-series/area_time_series.ipynb +69 -0
  54. hvplot-0.12.1/doc/gallery/time-series/dual_axis_timeseries.ipynb +61 -0
  55. hvplot-0.12.1/doc/gallery/time-series/forecast_bands.ipynb +97 -0
  56. hvplot-0.12.1/doc/gallery/time-series/lag_plot.ipynb +69 -0
  57. hvplot-0.12.1/doc/gallery/time-series/multi_series_line.ipynb +80 -0
  58. hvplot-0.12.1/doc/gallery/time-series/ohlc.ipynb +73 -0
  59. hvplot-0.12.1/doc/gallery/time-series/step_time_series.ipynb +69 -0
  60. hvplot-0.12.1/doc/gallery/time-series/time_series_bar.ipynb +83 -0
  61. hvplot-0.12.1/doc/gallery/time-series/time_series_line.ipynb +71 -0
  62. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/index.md +1 -1
  63. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/ref/api/index.md +47 -0
  64. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/ref/api/manual/hvplot.plotting.andrews_curves.ipynb +3 -1
  65. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/ref/api/manual/hvplot.plotting.parallel_coordinates.ipynb +2 -0
  66. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/ref/plotting_options/resampling.ipynb +1 -1
  67. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/releases.md +93 -0
  68. {hvplot-0.12.0a1 → hvplot-0.12.1}/hvplot/_version.py +16 -3
  69. {hvplot-0.12.0a1 → hvplot-0.12.1}/hvplot/converter.py +16 -4
  70. {hvplot-0.12.0a1 → hvplot-0.12.1}/hvplot/plotting/core.py +1 -0
  71. {hvplot-0.12.0a1 → hvplot-0.12.1}/hvplot/sampledata.py +1 -1
  72. {hvplot-0.12.0a1 → hvplot-0.12.1}/hvplot/utilities.py +3 -1
  73. {hvplot-0.12.0a1 → hvplot-0.12.1}/pyproject.toml +1 -1
  74. hvplot-0.12.0a1/doc/reference/geopandas/points.ipynb +0 -107
  75. hvplot-0.12.0a1/doc/reference/geopandas/polygons.ipynb +0 -93
  76. hvplot-0.12.0a1/doc/reference/tabular/andrewscurves.ipynb +0 -82
  77. hvplot-0.12.0a1/doc/reference/tabular/area.ipynb +0 -129
  78. hvplot-0.12.0a1/doc/reference/tabular/bar.ipynb +0 -273
  79. hvplot-0.12.0a1/doc/reference/tabular/barh.ipynb +0 -56
  80. hvplot-0.12.0a1/doc/reference/tabular/bivariate.ipynb +0 -55
  81. hvplot-0.12.0a1/doc/reference/tabular/box.ipynb +0 -88
  82. hvplot-0.12.0a1/doc/reference/tabular/errorbars.ipynb +0 -81
  83. hvplot-0.12.0a1/doc/reference/tabular/heatmap.ipynb +0 -102
  84. hvplot-0.12.0a1/doc/reference/tabular/hexbin.ipynb +0 -58
  85. hvplot-0.12.0a1/doc/reference/tabular/hist.ipynb +0 -122
  86. hvplot-0.12.0a1/doc/reference/tabular/kde.ipynb +0 -91
  87. hvplot-0.12.0a1/doc/reference/tabular/labels.ipynb +0 -79
  88. hvplot-0.12.0a1/doc/reference/tabular/lagplot.ipynb +0 -80
  89. hvplot-0.12.0a1/doc/reference/tabular/line.ipynb +0 -55
  90. hvplot-0.12.0a1/doc/reference/tabular/ohlc.ipynb +0 -110
  91. hvplot-0.12.0a1/doc/reference/tabular/parallelcoordinates.ipynb +0 -76
  92. hvplot-0.12.0a1/doc/reference/tabular/paths.ipynb +0 -80
  93. hvplot-0.12.0a1/doc/reference/tabular/scatter.ipynb +0 -81
  94. hvplot-0.12.0a1/doc/reference/tabular/scattermatrix.ipynb +0 -194
  95. hvplot-0.12.0a1/doc/reference/tabular/step.ipynb +0 -55
  96. hvplot-0.12.0a1/doc/reference/tabular/table.ipynb +0 -62
  97. hvplot-0.12.0a1/doc/reference/tabular/violin.ipynb +0 -57
  98. hvplot-0.12.0a1/doc/reference/xarray/bar.ipynb +0 -84
  99. hvplot-0.12.0a1/doc/reference/xarray/contour.ipynb +0 -92
  100. hvplot-0.12.0a1/doc/reference/xarray/contourf.ipynb +0 -90
  101. hvplot-0.12.0a1/doc/reference/xarray/hist.ipynb +0 -73
  102. hvplot-0.12.0a1/doc/reference/xarray/image.ipynb +0 -125
  103. hvplot-0.12.0a1/doc/reference/xarray/kde.ipynb +0 -61
  104. hvplot-0.12.0a1/doc/reference/xarray/line.ipynb +0 -73
  105. hvplot-0.12.0a1/doc/reference/xarray/quadmesh.ipynb +0 -72
  106. hvplot-0.12.0a1/doc/reference/xarray/rgb.ipynb +0 -63
  107. hvplot-0.12.0a1/doc/reference/xarray/vectorfield.ipynb +0 -230
  108. hvplot-0.12.0a1/doc/reference/xarray/violin.ipynb +0 -61
  109. {hvplot-0.12.0a1 → hvplot-0.12.1}/LICENSE +0 -0
  110. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/_ext/backend_styling_options.py +0 -0
  111. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/_ext/plotting_options_table.py +0 -0
  112. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/_static/custom.css +0 -0
  113. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/_static/favicon.ico +0 -0
  114. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/_static/home/bokeh.gif +0 -0
  115. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/_static/home/dask.gif +0 -0
  116. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/_static/home/explorer.gif +0 -0
  117. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/_static/home/geo.gif +0 -0
  118. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/_static/home/geopandas.gif +0 -0
  119. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/_static/home/intake.gif +0 -0
  120. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/_static/home/interactive_hvplot.gif +0 -0
  121. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/_static/home/interactive_pandas.gif +0 -0
  122. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/_static/home/interactive_xarray.gif +0 -0
  123. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/_static/home/large_data.gif +0 -0
  124. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/_static/home/layout.gif +0 -0
  125. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/_static/home/matplotlib.png +0 -0
  126. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/_static/home/networkx.gif +0 -0
  127. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/_static/home/overlay.png +0 -0
  128. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/_static/home/pandas.gif +0 -0
  129. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/_static/home/plotly.gif +0 -0
  130. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/_static/home/widgets.gif +0 -0
  131. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/_static/home/xarray.gif +0 -0
  132. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/_static/images/heat_and_trees.png +0 -0
  133. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/_static/images/portfolio.png +0 -0
  134. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/_static/logo.png +0 -0
  135. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/_static/logo_horizontal.png +0 -0
  136. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/_static/logo_horizontal.svg +0 -0
  137. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/_static/logo_stacked.svg +0 -0
  138. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/_static/patch_templates/sourcelink.html +0 -0
  139. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/about.md +0 -0
  140. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/assets/console.png +0 -0
  141. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/assets/console_server.gif +0 -0
  142. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/assets/diagram.png +0 -0
  143. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/assets/diagram.svg +0 -0
  144. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/assets/hvplot-wm.png +0 -0
  145. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/assets/streamz_demo.gif +0 -0
  146. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/governance/project-docs/CONTRIBUTING.md +0 -0
  147. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/governance/project-docs/GOVERNANCE.md +0 -0
  148. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/governance/project-docs/LICENSE.md +0 -0
  149. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/governance/project-docs/MEMBERS.md +0 -0
  150. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/ref/api/manual/hvplot.hvPlot.area.ipynb +0 -0
  151. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/ref/api/manual/hvplot.hvPlot.bar.ipynb +0 -0
  152. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/ref/api/manual/hvplot.hvPlot.barh.ipynb +0 -0
  153. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/ref/api/manual/hvplot.hvPlot.bivariate.ipynb +0 -0
  154. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/ref/api/manual/hvplot.hvPlot.box.ipynb +0 -0
  155. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/ref/api/manual/hvplot.hvPlot.contour.ipynb +0 -0
  156. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/ref/api/manual/hvplot.hvPlot.contourf.ipynb +0 -0
  157. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/ref/api/manual/hvplot.hvPlot.dataset.ipynb +0 -0
  158. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/ref/api/manual/hvplot.hvPlot.density.md +0 -0
  159. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/ref/api/manual/hvplot.hvPlot.errorbars.ipynb +0 -0
  160. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/ref/api/manual/hvplot.hvPlot.explorer.ipynb +0 -0
  161. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/ref/api/manual/hvplot.hvPlot.heatmap.ipynb +0 -0
  162. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/ref/api/manual/hvplot.hvPlot.hexbin.ipynb +0 -0
  163. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/ref/api/manual/hvplot.hvPlot.hist.ipynb +0 -0
  164. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/ref/api/manual/hvplot.hvPlot.image.ipynb +0 -0
  165. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/ref/api/manual/hvplot.hvPlot.kde.ipynb +0 -0
  166. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/ref/api/manual/hvplot.hvPlot.labels.ipynb +0 -0
  167. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/ref/api/manual/hvplot.hvPlot.line.ipynb +0 -0
  168. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/ref/api/manual/hvplot.hvPlot.ohlc.ipynb +0 -0
  169. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/ref/api/manual/hvplot.hvPlot.paths.ipynb +0 -0
  170. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/ref/api/manual/hvplot.hvPlot.points.ipynb +0 -0
  171. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/ref/api/manual/hvplot.hvPlot.polygons.ipynb +0 -0
  172. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/ref/api/manual/hvplot.hvPlot.quadmesh.ipynb +0 -0
  173. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/ref/api/manual/hvplot.hvPlot.rgb.ipynb +0 -0
  174. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/ref/api/manual/hvplot.hvPlot.scatter.ipynb +0 -0
  175. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/ref/api/manual/hvplot.hvPlot.step.ipynb +0 -0
  176. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/ref/api/manual/hvplot.hvPlot.table.ipynb +0 -0
  177. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/ref/api/manual/hvplot.hvPlot.vectorfield.ipynb +0 -0
  178. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/ref/api/manual/hvplot.hvPlot.violin.ipynb +0 -0
  179. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/ref/api/manual/hvplot.plotting.lag_plot.ipynb +0 -0
  180. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/ref/api/manual/hvplot.plotting.scatter_matrix.ipynb +0 -0
  181. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/ref/api_compatibility/index.md +0 -0
  182. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/ref/api_compatibility/pandas/Pandas_API.ipynb +0 -0
  183. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/ref/api_compatibility/pandas/index.ipynb +0 -0
  184. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/ref/data_libraries.ipynb +0 -0
  185. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/ref/deprecations.md +0 -0
  186. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/ref/index.md +0 -0
  187. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/ref/installation.md +0 -0
  188. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/ref/plotting_extensions.ipynb +0 -0
  189. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/ref/plotting_options/axis.ipynb +0 -0
  190. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/ref/plotting_options/color_colormap.ipynb +0 -0
  191. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/ref/plotting_options/data.ipynb +0 -0
  192. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/ref/plotting_options/geographic.ipynb +0 -0
  193. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/ref/plotting_options/index.md +0 -0
  194. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/ref/plotting_options/interactivity.ipynb +0 -0
  195. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/ref/plotting_options/legend.ipynb +0 -0
  196. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/ref/plotting_options/size_layout.ipynb +0 -0
  197. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/ref/plotting_options/streaming.ipynb +0 -0
  198. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/ref/plotting_options/styling.ipynb +0 -0
  199. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/roadmap.md +0 -0
  200. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/topics.html +0 -0
  201. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/tutorials/getting_started.ipynb +0 -0
  202. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/tutorials/getting_started_pandas.ipynb +0 -0
  203. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/tutorials/index.md +0 -0
  204. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/user_guide/Explorer.ipynb +0 -0
  205. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/user_guide/Geographic_Data.ipynb +0 -0
  206. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/user_guide/Gridded_Data.ipynb +0 -0
  207. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/user_guide/Interactive.ipynb +0 -0
  208. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/user_guide/Introduction.ipynb +0 -0
  209. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/user_guide/Large_Timeseries.ipynb +0 -0
  210. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/user_guide/NetworkX.ipynb +0 -0
  211. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/user_guide/Plotting.ipynb +0 -0
  212. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/user_guide/Plotting_Extensions.ipynb +0 -0
  213. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/user_guide/Plotting_with_Matplotlib.ipynb +0 -0
  214. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/user_guide/Plotting_with_Plotly.ipynb +0 -0
  215. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/user_guide/Statistical_Plots.ipynb +0 -0
  216. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/user_guide/Streaming.ipynb +0 -0
  217. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/user_guide/Subplots.ipynb +0 -0
  218. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/user_guide/Timeseries_Data.ipynb +0 -0
  219. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/user_guide/Viewing.ipynb +0 -0
  220. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/user_guide/Widgets.ipynb +0 -0
  221. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/user_guide/images/simple.svg +0 -0
  222. {hvplot-0.12.0a1 → hvplot-0.12.1}/doc/user_guide/index.md +0 -0
  223. {hvplot-0.12.0a1 → hvplot-0.12.1}/hvplot/__init__.py +0 -0
  224. {hvplot-0.12.0a1 → hvplot-0.12.1}/hvplot/backend_transforms.py +0 -0
  225. {hvplot-0.12.0a1 → hvplot-0.12.1}/hvplot/cudf.py +0 -0
  226. {hvplot-0.12.0a1 → hvplot-0.12.1}/hvplot/dask.py +0 -0
  227. {hvplot-0.12.0a1 → hvplot-0.12.1}/hvplot/data/crime.csv +0 -0
  228. {hvplot-0.12.0a1 → hvplot-0.12.1}/hvplot/datasets.yaml +0 -0
  229. {hvplot-0.12.0a1 → hvplot-0.12.1}/hvplot/duckdb.py +0 -0
  230. {hvplot-0.12.0a1 → hvplot-0.12.1}/hvplot/fugue.py +0 -0
  231. {hvplot-0.12.0a1 → hvplot-0.12.1}/hvplot/ibis.py +0 -0
  232. {hvplot-0.12.0a1 → hvplot-0.12.1}/hvplot/intake.py +0 -0
  233. {hvplot-0.12.0a1 → hvplot-0.12.1}/hvplot/interactive.py +0 -0
  234. {hvplot-0.12.0a1 → hvplot-0.12.1}/hvplot/networkx.py +0 -0
  235. {hvplot-0.12.0a1 → hvplot-0.12.1}/hvplot/pandas.py +0 -0
  236. {hvplot-0.12.0a1 → hvplot-0.12.1}/hvplot/plotting/__init__.py +0 -0
  237. {hvplot-0.12.0a1 → hvplot-0.12.1}/hvplot/plotting/andrews_curves.py +0 -0
  238. {hvplot-0.12.0a1 → hvplot-0.12.1}/hvplot/plotting/lag_plot.py +0 -0
  239. {hvplot-0.12.0a1 → hvplot-0.12.1}/hvplot/plotting/parallel_coordinates.py +0 -0
  240. {hvplot-0.12.0a1 → hvplot-0.12.1}/hvplot/plotting/scatter_matrix.py +0 -0
  241. {hvplot-0.12.0a1 → hvplot-0.12.1}/hvplot/polars.py +0 -0
  242. {hvplot-0.12.0a1 → hvplot-0.12.1}/hvplot/sample_data.py +0 -0
  243. {hvplot-0.12.0a1 → hvplot-0.12.1}/hvplot/streamz.py +0 -0
  244. {hvplot-0.12.0a1 → hvplot-0.12.1}/hvplot/tests/__init__.py +0 -0
  245. {hvplot-0.12.0a1 → hvplot-0.12.1}/hvplot/tests/conftest.py +0 -0
  246. {hvplot-0.12.0a1 → hvplot-0.12.1}/hvplot/tests/data/README.md +0 -0
  247. {hvplot-0.12.0a1 → hvplot-0.12.1}/hvplot/tests/data/RGB-red.byte.tif +0 -0
  248. {hvplot-0.12.0a1 → hvplot-0.12.1}/hvplot/tests/plotting/__init__.py +0 -0
  249. {hvplot-0.12.0a1 → hvplot-0.12.1}/hvplot/tests/plotting/testandrewscurves.py +0 -0
  250. {hvplot-0.12.0a1 → hvplot-0.12.1}/hvplot/tests/plotting/testcore.py +0 -0
  251. {hvplot-0.12.0a1 → hvplot-0.12.1}/hvplot/tests/plotting/testohlc.py +0 -0
  252. {hvplot-0.12.0a1 → hvplot-0.12.1}/hvplot/tests/plotting/testscattermatrix.py +0 -0
  253. {hvplot-0.12.0a1 → hvplot-0.12.1}/hvplot/tests/test_links.py +0 -0
  254. {hvplot-0.12.0a1 → hvplot-0.12.1}/hvplot/tests/testbackend_transforms.py +0 -0
  255. {hvplot-0.12.0a1 → hvplot-0.12.1}/hvplot/tests/testcharts.py +0 -0
  256. {hvplot-0.12.0a1 → hvplot-0.12.1}/hvplot/tests/testdeprecations.py +0 -0
  257. {hvplot-0.12.0a1 → hvplot-0.12.1}/hvplot/tests/testdocstring.py +0 -0
  258. {hvplot-0.12.0a1 → hvplot-0.12.1}/hvplot/tests/testfugue.py +0 -0
  259. {hvplot-0.12.0a1 → hvplot-0.12.1}/hvplot/tests/testgeo.py +0 -0
  260. {hvplot-0.12.0a1 → hvplot-0.12.1}/hvplot/tests/testgeowithoutgv.py +0 -0
  261. {hvplot-0.12.0a1 → hvplot-0.12.1}/hvplot/tests/testgridplots.py +0 -0
  262. {hvplot-0.12.0a1 → hvplot-0.12.1}/hvplot/tests/testhelp.py +0 -0
  263. {hvplot-0.12.0a1 → hvplot-0.12.1}/hvplot/tests/testibis.py +0 -0
  264. {hvplot-0.12.0a1 → hvplot-0.12.1}/hvplot/tests/testinteractive.py +0 -0
  265. {hvplot-0.12.0a1 → hvplot-0.12.1}/hvplot/tests/testnetworkx.py +0 -0
  266. {hvplot-0.12.0a1 → hvplot-0.12.1}/hvplot/tests/testoperations.py +0 -0
  267. {hvplot-0.12.0a1 → hvplot-0.12.1}/hvplot/tests/testoptions.py +0 -0
  268. {hvplot-0.12.0a1 → hvplot-0.12.1}/hvplot/tests/testoverrides.py +0 -0
  269. {hvplot-0.12.0a1 → hvplot-0.12.1}/hvplot/tests/testpanel.py +0 -0
  270. {hvplot-0.12.0a1 → hvplot-0.12.1}/hvplot/tests/testpatch.py +0 -0
  271. {hvplot-0.12.0a1 → hvplot-0.12.1}/hvplot/tests/testpatchsignature.py +0 -0
  272. {hvplot-0.12.0a1 → hvplot-0.12.1}/hvplot/tests/testplotting.py +0 -0
  273. {hvplot-0.12.0a1 → hvplot-0.12.1}/hvplot/tests/teststatplots.py +0 -0
  274. {hvplot-0.12.0a1 → hvplot-0.12.1}/hvplot/tests/teststreaming.py +0 -0
  275. {hvplot-0.12.0a1 → hvplot-0.12.1}/hvplot/tests/testtransforms.py +0 -0
  276. {hvplot-0.12.0a1 → hvplot-0.12.1}/hvplot/tests/testui.py +0 -0
  277. {hvplot-0.12.0a1 → hvplot-0.12.1}/hvplot/tests/testutil.py +0 -0
  278. {hvplot-0.12.0a1 → hvplot-0.12.1}/hvplot/tests/util.py +0 -0
  279. {hvplot-0.12.0a1 → hvplot-0.12.1}/hvplot/ui.py +0 -0
  280. {hvplot-0.12.0a1 → hvplot-0.12.1}/hvplot/util.py +0 -0
  281. {hvplot-0.12.0a1 → hvplot-0.12.1}/hvplot/xarray.py +0 -0
  282. {hvplot-0.12.0a1 → hvplot-0.12.1}/scripts/conda/build.sh +0 -0
  283. {hvplot-0.12.0a1 → hvplot-0.12.1}/scripts/conda/recipe/meta.yaml +0 -0
  284. {hvplot-0.12.0a1 → hvplot-0.12.1}/scripts/download_data.py +0 -0
  285. {hvplot-0.12.0a1 → hvplot-0.12.1}/scripts/sync_git_tags.py +0 -0
@@ -108,6 +108,7 @@ doc/**/*.rst
108
108
  doc/**/*.json
109
109
  # thumbnails are downloaded on the fly
110
110
  doc/reference/*/thumbnails/
111
+ doc/gallery/*/thumbnails/
111
112
  # this dir contains the whole website and should not be checked in on main
112
113
  builtdocs/
113
114
  # mystnb
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: hvplot
3
- Version: 0.12.0a1
3
+ Version: 0.12.1
4
4
  Summary: A high-level plotting API for the PyData ecosystem built on HoloViews.
5
5
  Project-URL: Homepage, https://hvplot.holoviz.org
6
6
  Project-URL: Source, http://github.com/holoviz/hvplot
@@ -48,7 +48,7 @@ Requires-Dist: intake<2.0.0,>=0.6.5; extra == 'doc'
48
48
  Requires-Dist: ipywidgets; extra == 'doc'
49
49
  Requires-Dist: jinja2; extra == 'doc'
50
50
  Requires-Dist: matplotlib; extra == 'doc'
51
- Requires-Dist: nbsite>=0.9.0a10; extra == 'doc'
51
+ Requires-Dist: nbsite>=0.9.0a12; extra == 'doc'
52
52
  Requires-Dist: networkx>=2.6.3; extra == 'doc'
53
53
  Requires-Dist: notebook>=5.4; extra == 'doc'
54
54
  Requires-Dist: numba>=0.51.0; extra == 'doc'
@@ -230,7 +230,7 @@ Description-Content-Type: text/markdown
230
230
  | Binder | [![Binder](https://img.shields.io/badge/launch%20v0.8.1-binder-579aca.svg?logo=data:image/png;base64,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)](https://mybinder.org/v2/gh/holoviz/hvplot/v0.8.1?urlpath=lab/tree) |
231
231
  | Support | [![Discourse](https://img.shields.io/discourse/status?server=https%3A%2F%2Fdiscourse.holoviz.org)](https://discourse.holoviz.org/c/hvplot/8) |
232
232
 
233
- [Home](https://hvplot.holoviz.org/) | [Installation instructions](#installation-instructions) | [Getting Started Guide](https://hvplot.holoviz.org/tutorials/getting_started.html) | [Reference Guides](https://hvplot.holoviz.org/reference/index.html) | [Examples](#examples) | [License](#license) | [Support](#support--feedback)
233
+ [Home](https://hvplot.holoviz.org/) | [Installation instructions](#installation-instructions) | [Getting Started Guide](https://hvplot.holoviz.org/tutorials/getting_started.html) | [Gallery](https://hvplot.holoviz.org/gallery/index.html) | [Reference](https://hvplot.holoviz.org/ref/index.html) | [Examples](#examples) | [License](#license) | [Support](#support--feedback)
234
234
 
235
235
  ## hvPlot provides a familiar, high-level API for visualization
236
236
 
@@ -17,7 +17,7 @@
17
17
  | Binder | [![Binder](https://img.shields.io/badge/launch%20v0.8.1-binder-579aca.svg?logo=data:image/png;base64,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)](https://mybinder.org/v2/gh/holoviz/hvplot/v0.8.1?urlpath=lab/tree) |
18
18
  | Support | [![Discourse](https://img.shields.io/discourse/status?server=https%3A%2F%2Fdiscourse.holoviz.org)](https://discourse.holoviz.org/c/hvplot/8) |
19
19
 
20
- [Home](https://hvplot.holoviz.org/) | [Installation instructions](#installation-instructions) | [Getting Started Guide](https://hvplot.holoviz.org/tutorials/getting_started.html) | [Reference Guides](https://hvplot.holoviz.org/reference/index.html) | [Examples](#examples) | [License](#license) | [Support](#support--feedback)
20
+ [Home](https://hvplot.holoviz.org/) | [Installation instructions](#installation-instructions) | [Getting Started Guide](https://hvplot.holoviz.org/tutorials/getting_started.html) | [Gallery](https://hvplot.holoviz.org/gallery/index.html) | [Reference](https://hvplot.holoviz.org/ref/index.html) | [Examples](#examples) | [License](#license) | [Support](#support--feedback)
21
21
 
22
22
  ## hvPlot provides a familiar, high-level API for visualization
23
23
 
@@ -67,7 +67,7 @@ html_theme_options.update( # noqa
67
67
  },
68
68
  ],
69
69
  'pygments_dark_style': 'material',
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>.",
70
+ 'announcement': "hvPlot 0.12 has just been released! Checkout the <a href='https://blog.holoviz.org/posts/hvplot_release_0.12/'>blog post</a> and support hvPlot by giving it a 🌟 on <a href='https://github.com/holoviz/hvplot'>Github</a>.",
71
71
  'switcher': {
72
72
  'json_url': 'https://hvplot.holoviz.org/switcher.json',
73
73
  'version_match': switcher_version,
@@ -111,17 +111,40 @@ nbsite_gallery_conf = {
111
111
  'github_project': 'hvplot',
112
112
  'examples_dir': '.',
113
113
  'galleries': {
114
- 'reference': {
114
+ 'gallery': {
115
115
  'title': 'Gallery',
116
116
  'intro': (
117
- 'Find the list of supported libraries on `this page <../ref/data_libraries.html>`_.'
117
+ 'Explore a curated set of example visualizations using hvPlot '
118
+ 'with different backends and datasets. For more examples using '
119
+ 'hvPlot and other HoloViz tools to solve real world problems, '
120
+ 'see the '
121
+ '`HoloViz Examples website <https://examples.holoviz.org>`_.'
118
122
  ),
119
123
  'sections': [
120
- 'tabular',
121
- 'geopandas',
122
- 'xarray',
124
+ {
125
+ 'path': 'basic-charts',
126
+ 'title': 'Basic Charts',
127
+ },
128
+ 'categorical',
129
+ 'multidimensional',
130
+ 'statistical',
131
+ {
132
+ 'path': 'time-series',
133
+ 'title': 'Time Series',
134
+ },
135
+ 'geospatial',
136
+ 'gridded',
137
+ {
138
+ 'path': 'big-data',
139
+ 'title': 'Big Data',
140
+ },
141
+ 'interactivity',
142
+ 'annotations',
123
143
  ],
124
144
  'skip_rst_notebook_directive': True,
145
+ 'no_image_thumb': True,
146
+ 'titles_from_files': True,
147
+ 'card_title_below': True,
125
148
  }
126
149
  },
127
150
  'thumbnail_url': 'https://assets.holoviz.org/hvplot/thumbnails',
@@ -174,9 +197,44 @@ nb_execution_excludepatterns = [
174
197
  # cell execution timeout in seconds (-1 to ignore, 30 by default)
175
198
  nb_execution_timeout = 240
176
199
 
177
- if os.getenv('HVPLOT_REFERENCE_GALLERY') not in ('False', 'false', '0'):
200
+ if os.getenv('HVPLOT_GALLERY') not in ('False', 'false', '0'):
178
201
  rediraffe_redirects.update(
179
202
  {
203
+ # When the old reference gallery was removed
204
+ 'reference/tabular/andrewscurves': 'ref/api/manual/hvplot.plotting.andrews_curves',
205
+ 'reference/tabular/area': 'ref/api/manual/hvplot.hvPlot.area',
206
+ 'reference/tabular/bar': 'ref/api/manual/hvplot.hvPlot.bar',
207
+ 'reference/tabular/barh': 'ref/api/manual/hvplot.hvPlot.barh',
208
+ 'reference/tabular/bivariate': 'ref/api/manual/hvplot.hvPlot.bivariate',
209
+ 'reference/tabular/box': 'ref/api/manual/hvplot.hvPlot.box',
210
+ 'reference/tabular/errorbars': 'ref/api/manual/hvplot.hvPlot.errorbars',
211
+ 'reference/tabular/heatmap': 'ref/api/manual/hvplot.hvPlot.heatmap',
212
+ 'reference/tabular/hexbin': 'ref/api/manual/hvplot.hvPlot.hexbin',
213
+ 'reference/tabular/hist': 'ref/api/manual/hvplot.hvPlot.hist',
214
+ 'reference/tabular/kde': 'ref/api/manual/hvplot.hvPlot.kde',
215
+ 'reference/tabular/labels': 'ref/api/manual/hvplot.hvPlot.labels',
216
+ 'reference/tabular/lagplot': 'ref/api/manual/hvplot.plotting.lag_plot',
217
+ 'reference/tabular/line': 'ref/api/manual/hvplot.hvPlot.line',
218
+ 'reference/tabular/ohlc': 'ref/api/manual/hvplot.hvPlot.ohlc',
219
+ 'reference/tabular/parallelcoordinates': 'ref/api/manual/hvplot.plotting.parallel_coordinates',
220
+ 'reference/tabular/scatter': 'ref/api/manual/hvplot.hvPlot.scatter',
221
+ 'reference/tabular/scattermatrix': 'ref/api/manual/hvplot.plotting.scatter_matrix',
222
+ 'reference/tabular/step': 'ref/api/manual/hvplot.hvPlot.step',
223
+ 'reference/tabular/table': 'ref/api/manual/hvplot.hvPlot.table',
224
+ 'reference/tabular/violin': 'ref/api/manual/hvplot.hvPlot.violin',
225
+ 'reference/geopandas/points': 'ref/api/manual/hvplot.hvPlot.points',
226
+ 'reference/geopandas/polygons': 'ref/api/manual/hvplot.hvPlot.polygons',
227
+ 'reference/xarray/bar': 'ref/api/manual/hvplot.hvPlot.bar',
228
+ 'reference/xarray/contour': 'ref/api/manual/hvplot.hvPlot.contour',
229
+ 'reference/xarray/contourf': 'ref/api/manual/hvplot.hvPlot.contourf',
230
+ 'reference/xarray/hist': 'ref/api/manual/hvplot.hvPlot.hist',
231
+ 'reference/xarray/image': 'ref/api/manual/hvplot.hvPlot.image',
232
+ 'reference/xarray/kde': 'ref/api/manual/hvplot.hvPlot.kde',
233
+ 'reference/xarray/line': 'ref/api/manual/hvplot.hvPlot.line',
234
+ 'reference/xarray/quadmesh': 'ref/api/manual/hvplot.hvPlot.quadmesh',
235
+ 'reference/xarray/rgb': 'ref/api/manual/hvplot.hvPlot.rgb',
236
+ 'reference/xarray/vectorfield': 'ref/api/manual/hvplot.hvPlot.vectorfield',
237
+ 'reference/xarray/violin': 'ref/api/manual/hvplot.hvPlot.violin',
180
238
  # When the pandas section was renamed tabular:
181
239
  'reference/pandas/andrewscurves': 'reference/tabular/andrewscurves',
182
240
  'reference/pandas/area': 'reference/tabular/area',
@@ -204,8 +262,8 @@ if os.getenv('HVPLOT_REFERENCE_GALLERY') not in ('False', 'false', '0'):
204
262
  else:
205
263
  if 'nbsite.gallery' in extensions:
206
264
  extensions.remove('nbsite.gallery')
207
- exclude_patterns.append('reference')
208
- nb_execution_excludepatterns.append('reference/**/*.ipynb')
265
+ exclude_patterns.append('gallery')
266
+ nb_execution_excludepatterns.append('gallery/**/*.ipynb')
209
267
 
210
268
  if os.getenv('HVPLOT_EXECUTE_NBS_USER_GUIDE') in ('False', 'false', '0'):
211
269
  nb_execution_excludepatterns.append('user_guide/**/*.ipynb')
@@ -1,3 +1,4 @@
1
+ import os
1
2
  import sys
2
3
 
3
4
  from importlib.util import find_spec
@@ -7,11 +8,19 @@ import dask
7
8
  from packaging.version import Version
8
9
  from bokeh.io.webdriver import webdriver_control
9
10
 
11
+ # Examples that are slow to run and/or download large files.
12
+ SLOW_EXAMPLES = [
13
+ 'gallery/geospatial/datashade_map.ipynb',
14
+ ]
10
15
 
11
16
  collect_ignore_glob = [
12
17
  'user_guide/Streaming.ipynb',
13
18
  ]
14
19
 
20
+ # Slow examples are excluded by default.
21
+ if os.getenv('HVPLOT_INCLUDE_SLOW_EXAMPLES'):
22
+ collect_ignore_glob.extend(SLOW_EXAMPLES)
23
+
15
24
  # On MacOs, Python 3.12 and 3.13, got the following error running this:
16
25
  # `pos = layout(G)`
17
26
  # => OSError: Format: "dot" not recognized. No formats found.
@@ -26,12 +35,8 @@ if not find_spec('pygraphviz') or (
26
35
  if not find_spec('geoviews'):
27
36
  collect_ignore_glob += [
28
37
  'tutorials/getting_started.ipynb',
29
- 'reference/geopandas/*.ipynb',
30
- 'reference/xarray/contour.ipynb',
31
- 'reference/xarray/contourf.ipynb',
32
- 'reference/xarray/image.ipynb',
33
- 'reference/xarray/quadmesh.ipynb',
34
- 'reference/xarray/vectorfield.ipynb',
38
+ 'gallery/geospatial/*.ipynb',
39
+ 'gallery/gridded/rgb_satellite_imagery.ipynb',
35
40
  'user_guide/Explorer.ipynb',
36
41
  'user_guide/Geographic_Data.ipynb',
37
42
  'user_guide/Integrations.ipynb',
@@ -204,6 +204,8 @@ Example tests can be run with the following command:
204
204
  pixi run test-example
205
205
  ```
206
206
 
207
+ Slow example tests are excluded by default. Set the environment variable `HVPLOT_INCLUDE_SLOW_EXAMPLES` (e.g. to `1`) to include them.
208
+
207
209
  ## Documentation
208
210
 
209
211
  The documentation can be built with the command:
@@ -215,7 +217,7 @@ pixi run docs-build
215
217
  As hvPlot uses notebooks for much of the documentation, this takes a little while. You can disable:
216
218
 
217
219
  - Executing all the notebooks by setting the environment variable `HVPLOT_EXECUTE_NBS` to `false`
218
- - Building the gallery with `HVPLOT_REFERENCE_GALLERY="false"`
220
+ - Building the gallery with `HVPLOT_GALLERY="false"`
219
221
  - Running the user guide notebooks with `HVPLOT_EXECUTE_NBS_USER_GUIDE="false"`
220
222
  - Running the getting started notebooks with `HVPLOT_EXECUTE_NBS_TUTORIALS="false"`
221
223
 
@@ -0,0 +1,64 @@
1
+ {
2
+ "cells": [
3
+ {
4
+ "cell_type": "markdown",
5
+ "id": "fa9ffb09-e121-4dc3-b4ce-2f49ffc79b8e",
6
+ "metadata": {},
7
+ "source": [
8
+ "# Horizontal Bar Chart with Labels\n",
9
+ "\n",
10
+ "A horizontal bar chart for comparing category values along the y-axis. This example uses the `penguins` dataset to show average body mass per species. Labels are added as an overlay."
11
+ ]
12
+ },
13
+ {
14
+ "cell_type": "code",
15
+ "execution_count": null,
16
+ "id": "bf923874-3780-46e6-b71a-c66cd6edd12e",
17
+ "metadata": {},
18
+ "outputs": [],
19
+ "source": [
20
+ "import hvplot.pandas # noqa\n",
21
+ "\n",
22
+ "df = hvplot.sampledata.penguins('pandas')\n",
23
+ "grouped = df.groupby('species', observed=True)['body_mass_g'].mean()\n",
24
+ "\n",
25
+ "grouped.hvplot.barh(\n",
26
+ " x='species',\n",
27
+ " y='body_mass_g',\n",
28
+ " xlabel='Species',\n",
29
+ " ylabel='Body Mass (g)',\n",
30
+ " legend=False,\n",
31
+ " title='Horizontal Bar Chart (Bokeh)',\n",
32
+ " width=400, height=400,\n",
33
+ ") * grouped.hvplot.labels(\n",
34
+ " x='species',\n",
35
+ " y='body_mass_g',\n",
36
+ " hover=False,\n",
37
+ " text=\"{body_mass_g:.0f} g \",\n",
38
+ " text_color='white',\n",
39
+ " text_align=\"right\",\n",
40
+ " width=400, height=400,\n",
41
+ ")"
42
+ ]
43
+ },
44
+ {
45
+ "cell_type": "markdown",
46
+ "id": "6335a800-d505-4fb6-a235-35c2acb62d9c",
47
+ "metadata": {},
48
+ "source": [
49
+ ":::{seealso}\n",
50
+ "- [Horizontal Bar Plots reference documentation](../../ref/api/manual/hvplot.hvPlot.barh.ipynb).\n",
51
+ "- [Labels reference documentation](../../ref/api/manual/hvplot.hvPlot.labels.ipynb).\n",
52
+ ":::"
53
+ ]
54
+ }
55
+ ],
56
+ "metadata": {
57
+ "language_info": {
58
+ "name": "python",
59
+ "pygments_lexer": "ipython3"
60
+ }
61
+ },
62
+ "nbformat": 4,
63
+ "nbformat_minor": 5
64
+ }
@@ -0,0 +1,69 @@
1
+ {
2
+ "cells": [
3
+ {
4
+ "cell_type": "markdown",
5
+ "id": "14b634d4-d40c-45a1-8da6-97141f0ac184",
6
+ "metadata": {},
7
+ "source": [
8
+ "# Simple Area Chart\n",
9
+ "\n",
10
+ "A filled area chart representing values over a sequence. This example uses simple numeric data to show how area plots work in hvPlot."
11
+ ]
12
+ },
13
+ {
14
+ "cell_type": "code",
15
+ "execution_count": null,
16
+ "id": "8b2a9abc-67d3-4af7-a93f-9401da4de96f",
17
+ "metadata": {},
18
+ "outputs": [],
19
+ "source": [
20
+ "import pandas as pd\n",
21
+ "import hvplot.pandas # noqa\n",
22
+ "\n",
23
+ "df = pd.DataFrame({\n",
24
+ " 'x': range(10),\n",
25
+ " 'y': [3, 4, 6, 8, 7, 6, 4, 5, 6, 7]\n",
26
+ "})\n",
27
+ "\n",
28
+ "df.hvplot.area(x='x', y='y', title='Simple Area Chart (Bokeh)')"
29
+ ]
30
+ },
31
+ {
32
+ "cell_type": "code",
33
+ "execution_count": null,
34
+ "id": "087c113e-6ad7-49d3-8923-252196fd8884",
35
+ "metadata": {},
36
+ "outputs": [],
37
+ "source": [
38
+ "import pandas as pd\n",
39
+ "import hvplot.pandas # noqa\n",
40
+ "hvplot.extension('matplotlib')\n",
41
+ "\n",
42
+ "df = pd.DataFrame({\n",
43
+ " 'x': range(10),\n",
44
+ " 'y': [3, 4, 6, 8, 7, 6, 4, 5, 6, 7]\n",
45
+ "})\n",
46
+ "\n",
47
+ "df.hvplot.area(x='x', y='y', title='Simple Area Chart (Matplotlib)')"
48
+ ]
49
+ },
50
+ {
51
+ "cell_type": "markdown",
52
+ "id": "a0c7b2dc-1a60-4afb-97d6-45f0aa886691",
53
+ "metadata": {},
54
+ "source": [
55
+ ":::{seealso}\n",
56
+ "- [Area Plots reference documentation](../../ref/api/manual/hvplot.hvPlot.area.ipynb).\n",
57
+ ":::"
58
+ ]
59
+ }
60
+ ],
61
+ "metadata": {
62
+ "language_info": {
63
+ "name": "python",
64
+ "pygments_lexer": "ipython3"
65
+ }
66
+ },
67
+ "nbformat": 4,
68
+ "nbformat_minor": 5
69
+ }
@@ -0,0 +1,70 @@
1
+ {
2
+ "cells": [
3
+ {
4
+ "cell_type": "markdown",
5
+ "id": "29a4d191-1160-4a02-af2e-ee238bdcafd5",
6
+ "metadata": {},
7
+ "source": [
8
+ "# Simple Bar Chart\n",
9
+ "\n",
10
+ "A basic bar chart showing the count of items in each category. This example uses a small pandas DataFrame to demonstrate categorical bar plots."
11
+ ]
12
+ },
13
+ {
14
+ "cell_type": "code",
15
+ "execution_count": null,
16
+ "id": "d6d79d69-6e9d-4aee-b4e2-a9f1ef46fb2c",
17
+ "metadata": {},
18
+ "outputs": [],
19
+ "source": [
20
+ "import pandas as pd\n",
21
+ "import hvplot.pandas # noqa\n",
22
+ "\n",
23
+ "df = pd.DataFrame({\n",
24
+ " 'category': ['A', 'B', 'C', 'A', 'B', 'C', 'A', 'B', 'C', 'A'],\n",
25
+ "})\n",
26
+ "counts = df['category'].value_counts().sort_index()\n",
27
+ "\n",
28
+ "counts.hvplot.bar(title='Simple Bar Chart (Bokeh)', xlabel='Category', ylabel='Count')"
29
+ ]
30
+ },
31
+ {
32
+ "cell_type": "code",
33
+ "execution_count": null,
34
+ "id": "04213f6e-6ee4-43f5-ba8d-c3de6ca9d02a",
35
+ "metadata": {},
36
+ "outputs": [],
37
+ "source": [
38
+ "import pandas as pd\n",
39
+ "import hvplot.pandas # noqa\n",
40
+ "hvplot.extension('matplotlib')\n",
41
+ "\n",
42
+ "df = pd.DataFrame({\n",
43
+ " 'category': ['A', 'B', 'C', 'A', 'B', 'C', 'A', 'B', 'C', 'A'],\n",
44
+ "})\n",
45
+ "counts = df['category'].value_counts().sort_index()\n",
46
+ "\n",
47
+ "counts.hvplot.bar(title='Simple Bar Chart (Matplotlib)', xlabel='Category', ylabel='Count')"
48
+ ]
49
+ },
50
+ {
51
+ "cell_type": "markdown",
52
+ "id": "44127e08-ff7d-40d2-8ebf-47a04ab9749a",
53
+ "metadata": {},
54
+ "source": [
55
+ ":::{seealso}\n",
56
+ "- [Bar Plots reference documentation](../../ref/api/manual/hvplot.hvPlot.bar.ipynb).\n",
57
+ "- [Categorical section](../categorical/index) for more complex bar plots.\n",
58
+ ":::"
59
+ ]
60
+ }
61
+ ],
62
+ "metadata": {
63
+ "language_info": {
64
+ "name": "python",
65
+ "pygments_lexer": "ipython3"
66
+ }
67
+ },
68
+ "nbformat": 4,
69
+ "nbformat_minor": 5
70
+ }
@@ -0,0 +1,74 @@
1
+ {
2
+ "cells": [
3
+ {
4
+ "cell_type": "markdown",
5
+ "id": "7d941e75-5b09-4cb6-9b0f-6fbdc5e08388",
6
+ "metadata": {},
7
+ "source": [
8
+ "# Simple Box Plot\n",
9
+ "\n",
10
+ "A simple box and whisker plot for visualizing the distribution and spread of numeric values grouped by category.\n",
11
+ "This example shows how to create a box plot using a small dataset with categories."
12
+ ]
13
+ },
14
+ {
15
+ "cell_type": "code",
16
+ "execution_count": null,
17
+ "id": "44583f96-98d7-47db-afa7-f19df86a8d66",
18
+ "metadata": {},
19
+ "outputs": [],
20
+ "source": [
21
+ "import pandas as pd\n",
22
+ "import numpy as np\n",
23
+ "import hvplot.pandas # noqa\n",
24
+ "\n",
25
+ "np.random.seed(0)\n",
26
+ "df = pd.DataFrame({\n",
27
+ " 'group': np.random.choice(['A', 'B', 'C'], size=100),\n",
28
+ " 'score': np.random.normal(loc=75, scale=10, size=100)\n",
29
+ "})\n",
30
+ "\n",
31
+ "df.hvplot.box(y='score', by='group', title='Simple Box Plot (Bokeh)')"
32
+ ]
33
+ },
34
+ {
35
+ "cell_type": "code",
36
+ "execution_count": null,
37
+ "id": "6825dcde-303a-4ee0-88bb-fc7a630fa37e",
38
+ "metadata": {},
39
+ "outputs": [],
40
+ "source": [
41
+ "import pandas as pd\n",
42
+ "import numpy as np\n",
43
+ "import hvplot.pandas # noqa\n",
44
+ "hvplot.extension('matplotlib')\n",
45
+ "\n",
46
+ "np.random.seed(0)\n",
47
+ "df = pd.DataFrame({\n",
48
+ " 'group': np.random.choice(['A', 'B', 'C'], size=100),\n",
49
+ " 'score': np.random.normal(loc=75, scale=10, size=100)\n",
50
+ "})\n",
51
+ "\n",
52
+ "df.hvplot.box(y='score', by='group', title='Simple Box Plot (Matplotlib)')"
53
+ ]
54
+ },
55
+ {
56
+ "cell_type": "markdown",
57
+ "id": "4635a37b-774e-4789-9be6-6dc62f5a4672",
58
+ "metadata": {},
59
+ "source": [
60
+ ":::{seealso}\n",
61
+ "- [Box Plots reference documentation](../../ref/api/manual/hvplot.hvPlot.box.ipynb).\n",
62
+ ":::"
63
+ ]
64
+ }
65
+ ],
66
+ "metadata": {
67
+ "language_info": {
68
+ "name": "python",
69
+ "pygments_lexer": "ipython3"
70
+ }
71
+ },
72
+ "nbformat": 4,
73
+ "nbformat_minor": 5
74
+ }
@@ -0,0 +1,77 @@
1
+ {
2
+ "cells": [
3
+ {
4
+ "cell_type": "markdown",
5
+ "id": "330f25ec-8112-4c56-a5c0-8e45ac48cbd6",
6
+ "metadata": {},
7
+ "source": [
8
+ "# Simple Heatmap\n",
9
+ "\n",
10
+ "A simple heatmap showing the relationship between two categorical variables and a numeric value.\n",
11
+ "This example uses a small pivoted dataset to highlight value intensity across a grid."
12
+ ]
13
+ },
14
+ {
15
+ "cell_type": "code",
16
+ "execution_count": null,
17
+ "id": "be4bd32e-cb62-4f6e-8ab6-9a5ece672730",
18
+ "metadata": {},
19
+ "outputs": [],
20
+ "source": [
21
+ "import pandas as pd\n",
22
+ "import numpy as np\n",
23
+ "import hvplot.pandas # noqa\n",
24
+ "\n",
25
+ "np.random.seed(42)\n",
26
+ "df = pd.DataFrame({\n",
27
+ " 'x': np.tile(['A', 'B', 'C', 'D'], 4),\n",
28
+ " 'y': np.repeat(['W', 'X', 'Y', 'Z'], 4),\n",
29
+ " 'value': np.random.randint(1, 10, size=16)\n",
30
+ "})\n",
31
+ "\n",
32
+ "df.hvplot.heatmap(x='x', y='y', C='value', title='Basic Heatmap (Bokeh)')"
33
+ ]
34
+ },
35
+ {
36
+ "cell_type": "code",
37
+ "execution_count": null,
38
+ "id": "771bb895-0444-4aaf-9a1c-c0759d59b760",
39
+ "metadata": {},
40
+ "outputs": [],
41
+ "source": [
42
+ "import pandas as pd\n",
43
+ "import numpy as np\n",
44
+ "import hvplot.pandas # noqa\n",
45
+ "hvplot.extension('matplotlib')\n",
46
+ "\n",
47
+ "np.random.seed(42)\n",
48
+ "df = pd.DataFrame({\n",
49
+ " 'x': np.tile(['A', 'B', 'C', 'D'], 4),\n",
50
+ " 'y': np.repeat(['W', 'X', 'Y', 'Z'], 4),\n",
51
+ " 'value': np.random.randint(1, 10, size=16)\n",
52
+ "})\n",
53
+ "\n",
54
+ "df.hvplot.heatmap(x='x', y='y', C='value', title='Basic Heatmap (Matplotlib)')"
55
+ ]
56
+ },
57
+ {
58
+ "cell_type": "markdown",
59
+ "id": "b4277362-6063-402b-b321-17444c1ed706",
60
+ "metadata": {},
61
+ "source": [
62
+ ":::{seealso}\n",
63
+ "- [Heatmap Plots reference documentation](../../ref/api/manual/hvplot.hvPlot.heatmap.ipynb).\n",
64
+ "- [Correlation Heatmap example](../statistical/correlation_heatmap.ipynb).\n",
65
+ ":::"
66
+ ]
67
+ }
68
+ ],
69
+ "metadata": {
70
+ "language_info": {
71
+ "name": "python",
72
+ "pygments_lexer": "ipython3"
73
+ }
74
+ },
75
+ "nbformat": 4,
76
+ "nbformat_minor": 5
77
+ }
@@ -0,0 +1,69 @@
1
+ {
2
+ "cells": [
3
+ {
4
+ "cell_type": "markdown",
5
+ "id": "e6cab841-9e56-4074-9160-02f789680144",
6
+ "metadata": {},
7
+ "source": [
8
+ "# Simple Line Plot\n",
9
+ "\n",
10
+ "A basic line chart showing a trend over time. This example demonstrates the default line plotting behavior in hvPlot."
11
+ ]
12
+ },
13
+ {
14
+ "cell_type": "code",
15
+ "execution_count": null,
16
+ "id": "4af9bb48-b443-4dae-98e0-a5746e071556",
17
+ "metadata": {},
18
+ "outputs": [],
19
+ "source": [
20
+ "import pandas as pd\n",
21
+ "import hvplot.pandas # noqa\n",
22
+ "\n",
23
+ "df = pd.DataFrame({\n",
24
+ " 'day': list(range(1, 8)),\n",
25
+ " 'value': [5, 7, 6, 8, 7, 9, 10]\n",
26
+ "})\n",
27
+ "\n",
28
+ "df.hvplot.line(x='day', y='value', title='Simple Line Plot (Bokeh)')"
29
+ ]
30
+ },
31
+ {
32
+ "cell_type": "code",
33
+ "execution_count": null,
34
+ "id": "dadaef9f-e907-46f0-97c0-d6f7b061ba69",
35
+ "metadata": {},
36
+ "outputs": [],
37
+ "source": [
38
+ "import pandas as pd\n",
39
+ "import hvplot.pandas # noqa\n",
40
+ "hvplot.extension('matplotlib')\n",
41
+ "\n",
42
+ "df = pd.DataFrame({\n",
43
+ " 'day': list(range(1, 8)),\n",
44
+ " 'value': [5, 7, 6, 8, 7, 9, 10]\n",
45
+ "})\n",
46
+ "\n",
47
+ "df.hvplot.line(x='day', y='value', title='Simple Line Plot (Matplotlib)')"
48
+ ]
49
+ },
50
+ {
51
+ "cell_type": "markdown",
52
+ "id": "46b204a3-4750-4791-bab8-7776c210e9d8",
53
+ "metadata": {},
54
+ "source": [
55
+ ":::{seealso}\n",
56
+ "- [Line Plots reference documentation](../../ref/api/manual/hvplot.hvPlot.line.ipynb).\n",
57
+ ":::"
58
+ ]
59
+ }
60
+ ],
61
+ "metadata": {
62
+ "language_info": {
63
+ "name": "python",
64
+ "pygments_lexer": "ipython3"
65
+ }
66
+ },
67
+ "nbformat": 4,
68
+ "nbformat_minor": 5
69
+ }