Skip to content

accessors module

Pandas accessors for Plotly Express.

Note

Accessors do not utilize caching.


attach_px_methods function

attach_px_methods(
    cls
)

Class decorator to attach Plotly Express methods.


PXAccessor class

PXAccessor(
    wrapper,
    obj=None,
    **kwargs
)

Accessor for running Plotly Express functions.

Accessible via pd.Series.vbt.px and pd.DataFrame.vbt.px.

Usage

>>> from vectorbtpro import *

>>> pd.Series([1, 2, 3]).vbt.px.bar().show()

Superclasses

Inherited members

Subclasses


area method

attach_px_methods.<locals>.plot_func(
    *args,
    layout=None,
    **kwargs
)

bar method

attach_px_methods.<locals>.plot_func(
    *args,
    layout=None,
    **kwargs
)

bar_polar method

attach_px_methods.<locals>.plot_func(
    *args,
    layout=None,
    **kwargs
)

box method

attach_px_methods.<locals>.plot_func(
    *args,
    layout=None,
    **kwargs
)

choropleth method

attach_px_methods.<locals>.plot_func(
    *args,
    layout=None,
    **kwargs
)

choropleth_mapbox method

attach_px_methods.<locals>.plot_func(
    *args,
    layout=None,
    **kwargs
)

density_contour method

attach_px_methods.<locals>.plot_func(
    *args,
    layout=None,
    **kwargs
)

density_heatmap method

attach_px_methods.<locals>.plot_func(
    *args,
    layout=None,
    **kwargs
)

density_mapbox method

attach_px_methods.<locals>.plot_func(
    *args,
    layout=None,
    **kwargs
)

ecdf method

attach_px_methods.<locals>.plot_func(
    *args,
    layout=None,
    **kwargs
)

funnel method

attach_px_methods.<locals>.plot_func(
    *args,
    layout=None,
    **kwargs
)

funnel_area method

attach_px_methods.<locals>.plot_func(
    *args,
    layout=None,
    **kwargs
)

histogram method

attach_px_methods.<locals>.plot_func(
    *args,
    layout=None,
    **kwargs
)

icicle method

attach_px_methods.<locals>.plot_func(
    *args,
    layout=None,
    **kwargs
)

imshow method

attach_px_methods.<locals>.plot_func(
    *args,
    layout=None,
    **kwargs
)

line method

attach_px_methods.<locals>.plot_func(
    *args,
    layout=None,
    **kwargs
)

line_3d method

attach_px_methods.<locals>.plot_func(
    *args,
    layout=None,
    **kwargs
)

line_geo method

attach_px_methods.<locals>.plot_func(
    *args,
    layout=None,
    **kwargs
)

line_mapbox method

attach_px_methods.<locals>.plot_func(
    *args,
    layout=None,
    **kwargs
)

line_polar method

attach_px_methods.<locals>.plot_func(
    *args,
    layout=None,
    **kwargs
)

line_ternary method

attach_px_methods.<locals>.plot_func(
    *args,
    layout=None,
    **kwargs
)

parallel_categories method

attach_px_methods.<locals>.plot_func(
    *args,
    layout=None,
    **kwargs
)

parallel_coordinates method

attach_px_methods.<locals>.plot_func(
    *args,
    layout=None,
    **kwargs
)

pie method

attach_px_methods.<locals>.plot_func(
    *args,
    layout=None,
    **kwargs
)

scatter method

attach_px_methods.<locals>.plot_func(
    *args,
    layout=None,
    **kwargs
)

scatter_3d method

attach_px_methods.<locals>.plot_func(
    *args,
    layout=None,
    **kwargs
)

scatter_geo method

attach_px_methods.<locals>.plot_func(
    *args,
    layout=None,
    **kwargs
)

scatter_mapbox method

attach_px_methods.<locals>.plot_func(
    *args,
    layout=None,
    **kwargs
)

scatter_matrix method

attach_px_methods.<locals>.plot_func(
    *args,
    layout=None,
    **kwargs
)

scatter_polar method

attach_px_methods.<locals>.plot_func(
    *args,
    layout=None,
    **kwargs
)

scatter_ternary method

attach_px_methods.<locals>.plot_func(
    *args,
    layout=None,
    **kwargs
)

strip method

attach_px_methods.<locals>.plot_func(
    *args,
    layout=None,
    **kwargs
)

sunburst method

attach_px_methods.<locals>.plot_func(
    *args,
    layout=None,
    **kwargs
)

timeline method

attach_px_methods.<locals>.plot_func(
    *args,
    layout=None,
    **kwargs
)

treemap method

attach_px_methods.<locals>.plot_func(
    *args,
    layout=None,
    **kwargs
)

violin method

attach_px_methods.<locals>.plot_func(
    *args,
    layout=None,
    **kwargs
)

PXDFAccessor class

PXDFAccessor(
    wrapper,
    obj=None,
    **kwargs
)

Accessor for running Plotly Express functions. For DataFrames only.

Accessible via pd.DataFrame.vbt.px.

Superclasses

Inherited members


PXSRAccessor class

PXSRAccessor(
    wrapper,
    obj=None,
    **kwargs
)

Accessor for running Plotly Express functions. For Series only.

Accessible via pd.Series.vbt.px.

Superclasses

Inherited members