pdvega could add an entrypoint to register itself with pandas: https://dev.pandas.io/development/extending.html#plotting-backends Something like ```python # in setup.py setup( # noqa: F821 ..., entry_points={ "pandas_plotting_backends": [ "altair = pdvega.<module>", ], }, ) ``` where `<module>` is whatever module has the `plot` top-level method with the right signature.
pdvega could add an entrypoint to register itself with pandas: https://dev.pandas.io/development/extending.html#plotting-backends
Something like
where
<module>is whatever module has theplottop-level method with the right signature.