In Pandas, the list of available plotting backends changes and get updated over time, but is there a function/attribute to actually print them?
https://pandas.pydata.org/pandas-docs/stable/development/extending.html#plotting-backends
I understand I can query the existing one like this:
print(pd.options.plotting.backend)
matplotlib
Or, for example, if I need all the templates in plotly, I can write:
import plotly.io as pio
pio.templates
And then I get:
Default template: 'plotly'
Available templates:
['ggplot2', 'seaborn', 'simple_white', 'plotly',
'plotly_white', 'plotly_dark', 'presentation', 'xgridoff',
'ygridoff', 'gridon', 'none']
Is is possible to get such information for the available pandas plotting backends, too?