Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Index your code
hub
/
github.com/holoviz/hvplot
/ functions
Functions
992 in github.com/holoviz/hvplot
⨍
Functions
992
◇
Types & classes
74
↳
Endpoints
4
↓ 121 callers
Method
hvplot
Return the plot as a HoloViews object.
hvplot/ui.py:793
↓ 77 callers
Method
scatter
The `scatter` plot visualizes your points as markers in 2D space. You can visualize one more dimension by using colors. The
hvplot/plotting/core.py:384
↓ 41 callers
Method
points
A `points` plot visualizes positions in a 2D space. This is useful for example for geographic plots. Although the :meth:`hvp
hvplot/plotting/core.py:1253
↓ 36 callers
Method
_apply_operator
(self, operator, *args, reverse=False, **kwargs)
hvplot/interactive.py:579
↓ 30 callers
Method
explorer
The `explorer` plot allows you to interactively explore your data. Reference: https://hvplot.holoviz.org/user_guide/Explorer.html
hvplot/plotting/core.py:130
↓ 25 callers
Method
_error_if_unavailable
Raise an error if the element is not available with the current backend.
hvplot/converter.py:2397
↓ 25 callers
Method
line
The `line` plot connects the points with a continuous curve. Reference: https://hvplot.holoviz.org/ref/api/manual/hvplot.hvPlot.line
hvplot/plotting/core.py:260
↓ 23 callers
Method
image
Image plot You can use `image` to display for example geographic data with independent `latitude` and `longitude` fields and
hvplot/plotting/core.py:1736
↓ 22 callers
Function
scatter_matrix
Scatter matrix of numeric columns. A scatter_matrix shows all the pairwise relationships between the columns. Each non-diagonal plots th
hvplot/plotting/scatter_matrix.py:14
↓ 21 callers
Function
redim_
Conditionally redim a HoloViews object
hvplot/util.py:925
↓ 18 callers
Function
_convert_limit_to_mercator
Convert axis limits to Web Mercator coordinates when possible.
hvplot/util.py:468
↓ 16 callers
Function
check_library
(obj, library)
hvplot/util.py:554
↓ 15 callers
Method
_get_compat_opts
(self, el_name, **custom)
hvplot/converter.py:2386
↓ 15 callers
Function
is_list_like
Adapted from pandas' is_list_like cython function.
hvplot/util.py:506
↓ 13 callers
Method
_callback
(self)
hvplot/interactive.py:372
↓ 12 callers
Method
_get_opts
(self, eltype, backend='bokeh', **custom)
hvplot/converter.py:2229
↓ 12 callers
Function
_is_within_latlon_bounds
Return True when finite lat/lon bounds are detected. If unexpected data is encountered, return False.
hvplot/util.py:415
↓ 12 callers
Method
layout
Returns a layout of the widgets and output arranged according to the center and widget location specified in the interactive
hvplot/interactive.py:782
↓ 12 callers
Function
process_xarray
( data, x, y, by, groupby, use_dask, persist, gridded, label, value_label, other_dims, kind=None )
hvplot/util.py:681
↓ 12 callers
Method
sel
(self, **kwargs)
hvplot/xarray.py:13
↓ 11 callers
Method
_clone
( self, transform=None, plot=None, loc=None, center=None, dmap
hvplot/interactive.py:392
↓ 11 callers
Function
draw
Draw the graph G using hvPlot. Draw the graph with hvPlot with options for node positions, labeling, titles, and many other drawing feat
hvplot/networkx.py:122
↓ 11 callers
Method
eval
Returns the current state of the interactive expression. The returned object is no longer interactive.
hvplot/interactive.py:757
↓ 11 callers
Function
post_patch
(extension='bokeh', logo=False, check_loaded=False)
hvplot/__init__.py:148
↓ 10 callers
Function
_bounds_in_range
Check if both bounds are valid and in range.
hvplot/util.py:453
↓ 10 callers
Function
_convert_latlon_to_mercator
Convert lon/lat values to Web Mercator easting/northing.
hvplot/util.py:443
↓ 10 callers
Method
_merge_redim
(self, ranges, attr='range')
hvplot/converter.py:2325
↓ 10 callers
Function
filter_opts
(eltype, options, backend='bokeh')
hvplot/util.py:832
↓ 10 callers
Function
process_crs
Parses cartopy CRS definitions defined in one of a few formats: 1. EPSG codes: Defined as string of the form "EPSG: {code}" or an intege
hvplot/util.py:339
↓ 10 callers
Method
widgets
Returns a Column of widgets which control the interactive output. Returns ------- A Column of widgets
hvplot/interactive.py:855
↓ 9 callers
Method
_get_element
(self, kind)
hvplot/converter.py:3140
↓ 9 callers
Method
_process_chart_args
(self, data, x, y, single_y=False, categories=None)
hvplot/converter.py:2518
↓ 9 callers
Function
is_geodataframe
(data)
hvplot/util.py:670
↓ 9 callers
Method
isel
(self, **kwargs)
hvplot/xarray.py:28
↓ 9 callers
Method
panel
Wraps the output in a Panel component.
hvplot/interactive.py:849
↓ 9 callers
Function
proj_to_cartopy
Converts a pyproj.Proj to a cartopy.crs.Projection (Code copied from https://github.com/fmaussion/salem) Parameters ----------
hvplot/util.py:155
↓ 8 callers
Method
compute
(self)
hvplot/dask.py:15
↓ 8 callers
Method
hist
A `histogram` displays an approximate representation of the distribution of continuous data. Reference: https://hvplot.holoviz.org/r
hvplot/plotting/core.py:1026
↓ 8 callers
Function
makeDataFrame
()
hvplot/tests/util.py:55
↓ 8 callers
Function
plot
(data, kind, **kwargs)
hvplot/plotting/__init__.py:15
↓ 7 callers
Function
_transfer_opts_cur_backend
(element)
hvplot/backend_transforms.py:84
↓ 7 callers
Method
clone
Allows making a copy of the Callable optionally overriding the callable and other parameters.
hvplot/converter.py:104
↓ 7 callers
Function
is_dask
(data)
hvplot/util.py:567
↓ 6 callers
Function
_convert_col_names_to_str
Convert column names to string.
hvplot/util.py:866
↓ 6 callers
Function
_find_stack_level
Find the first place in the stack that is not inside hvplot (tests notwithstanding). Inspired by: pandas.util._exceptions.find_stack_leve
hvplot/util.py:1217
↓ 6 callers
Function
_get_doc_and_signature
( cls, kind, completions=False, docstring=True, generic=True, style=True, signature=None )
hvplot/util.py:993
↓ 6 callers
Method
assertCRS
(self, plot, proj=None)
hvplot/tests/testgeo.py:51
↓ 6 callers
Function
is_xarray
(data)
hvplot/util.py:615
↓ 6 callers
Method
output
Returns the output of the interactive pipeline, which is either a HoloViews DynamicMap or a Panel object. Returns --
hvplot/interactive.py:838
↓ 6 callers
Method
rgb
RGB plot `rgb` can be used to display images that are distributed as three separate "channels" or "bands". Referen
hvplot/plotting/core.py:1783
↓ 6 callers
Function
support_index
HoloViews added in v1.19.0 support for retaining Pandas indexes (no longer calling .reset_index()). Update this utility when other data
hvplot/util.py:646
↓ 5 callers
Method
__init__
(self, data, **params)
hvplot/ui.py:228
↓ 5 callers
Method
_process_gridded_args
(self, data, x, y, z)
hvplot/converter.py:3109
↓ 5 callers
Method
_resolve_accessor
(self)
hvplot/interactive.py:449
↓ 5 callers
Function
bind
Returns a *reactive* function that can be used to start your `.interactive` pipeline by running a model or loading data depending on inputs f
hvplot/__init__.py:173
↓ 5 callers
Function
instantiate_crs_str
Instantiate a cartopy.crs.Projection from a string.
hvplot/util.py:883
↓ 5 callers
Method
labels
Labels plot. `labels` are mostly useful when overlaid on top of other plots using the `*` operator. Reference: http
hvplot/plotting/core.py:1435
↓ 5 callers
Method
ohlc
The `ohlc` plot visualizes the open, high, low and close prices of stocks and other assets. Reference: https://hvplot.holoviz.org/re
hvplot/plotting/core.py:553
↓ 5 callers
Function
patch
(name='hvplot', interactive='interactive', extension='bokeh', logo=False)
hvplot/dask.py:20
↓ 5 callers
Function
relabel_redim
Conditionally relabel and/or redim a HoloViews object
hvplot/util.py:932
↓ 4 callers
Method
_get_dimensions
(self, kdims, vdims)
hvplot/converter.py:2352
↓ 4 callers
Function
_get_docstring_group_parameters
(option_group: str)
hvplot/util.py:1208
↓ 4 callers
Function
_in_ipython
()
hvplot/util.py:88
↓ 4 callers
Method
chart
Helper method for simple x vs. y charts
hvplot/converter.py:2592
↓ 4 callers
Function
is_ibis
(data)
hvplot/util.py:599
↓ 4 callers
Function
load_data
(species, watch=True)
hvplot/tests/testinteractive.py:266
↓ 4 callers
Function
process_dynamic_args
(x, y, kind, **kwds)
hvplot/util.py:812
↓ 4 callers
Function
relabel
Conditionally relabel a HoloViews object
hvplot/util.py:918
↓ 3 callers
Method
__call__
(self, *args, _kind=None, **kwargs)
hvplot/interactive.py:882
↓ 3 callers
Function
_generate_unique_name
(name: str, names: Sequence[str], suffix: str = '_')
hvplot/util.py:1246
↓ 3 callers
Method
_geom_plot
(self, x=None, y=None, data=None, kind='polygons')
hvplot/converter.py:3304
↓ 3 callers
Function
_get_backend_style_options
(kind: str, backend: str)
hvplot/util.py:982
↓ 3 callers
Method
_get_converter
(self, x=None, y=None, kind=None, **kwds)
hvplot/plotting/core.py:99
↓ 3 callers
Method
_validate_dim
(self, dimension)
hvplot/converter.py:2342
↓ 3 callers
Function
check_crs
Checks if the crs represents a valid grid, projection or ESPG string. (Code copied and adapted from https://github.com/fmaussion/salem)
hvplot/util.py:96
↓ 3 callers
Method
color_series
(self)
hvplot/tests/testcharts.py:164
↓ 3 callers
Method
dataset
Wraps the dataset in a :class:`holoviews:holoviews.element.Dataset` object, for further processing with HoloViews. Parameter
hvplot/plotting/core.py:1222
↓ 3 callers
Method
heatmap
`heatmap` visualises tabular data indexed by two key dimensions as a grid of colored values. This allows spotting correlations in mul
hvplot/plotting/core.py:602
↓ 3 callers
Function
import_geoviews
()
hvplot/util.py:906
↓ 3 callers
Method
is_empty
(self)
hvplot/tests/testinteractive.py:53
↓ 3 callers
Function
is_tabular
(data)
hvplot/util.py:521
↓ 3 callers
Function
is_xarray_dataarray
(data)
hvplot/util.py:638
↓ 3 callers
Function
makeTimeDataFrame
(nper=None, freq='B')
hvplot/tests/util.py:80
↓ 3 callers
Function
patch
(name='hvplot', extension='bokeh', logo=False)
hvplot/intake.py:6
↓ 3 callers
Method
plot_code
Return a string representation that can be easily copy-pasted in a notebook cell to create a plot from a call to the `.hvplot` accesso
hvplot/ui.py:797
↓ 3 callers
Function
process_derived_datetime_pandas
(data, not_found, indexes=None)
hvplot/util.py:785
↓ 3 callers
Function
run_script
(script, env_vars=None)
hvplot/tests/testpatchsignature.py:9
↓ 3 callers
Method
save
Save the plot to file. Calls the `holoviews.save` utility, refer to its documentation for a full description of the available kwargs.
hvplot/ui.py:839
↓ 3 callers
Method
settings
Return a dictionary of the customized settings. This dictionary can be reused as an unpacked input to the explorer or a call to the `
hvplot/ui.py:852
↓ 3 callers
Method
single_chart
(self, element, x, y, data=None)
hvplot/converter.py:2412
↓ 2 callers
Method
__dir__
(self)
hvplot/interactive.py:903
↓ 2 callers
Method
_apply_layers
(self, obj)
hvplot/converter.py:2234
↓ 2 callers
Method
_build_kwargs_string
(self, kwargs)
hvplot/ui.py:831
↓ 2 callers
Method
_convert_to_int
Converts datetime to int to avoid the error in https://github.com/holoviz/hvplot/issues/964. This function is a workaround and shoul
hvplot/ui.py:250
↓ 2 callers
Function
_create_param_pane
(inst, widgets_kwargs=None, parameters=None)
hvplot/ui.py:95
↓ 2 callers
Method
_get_ax_fn
()
hvplot/interactive.py:494
↓ 2 callers
Method
_get_tiles
(self, source, lib='holoviews')
hvplot/converter.py:2285
↓ 2 callers
Function
_is_interactive_opt
Heuristics to detect if a bokeh option is about interactivity, like 'selection_alpha'. >>> is_interactive_opt('height') False >>
hvplot/backend_transforms.py:65
↓ 2 callers
Function
_numpydoc_extra_sections
()
hvplot/util.py:1143
↓ 2 callers
Function
_parse_docstring_sections
Used to parse the docstring that contains all the plot options.
hvplot/util.py:950
next →
1–100 of 992, ranked by callers