80
80
def plot (data_frame , kind , ** kwargs ):
81
81
"""
82
82
Pandas plotting backend function, not meant to be called directly.
83
- To activate, set pandas.options.plotting.backend="plotly.express.pandas_backend "
83
+ To activate, set pandas.options.plotting.backend="plotly"
84
84
See https://github.com/pandas-dev/pandas/blob/master/pandas/plotting/__init__.py
85
85
"""
86
86
from .express import scatter , line , area , bar , box , histogram
@@ -103,14 +103,14 @@ def plot(data_frame, kind, **kwargs):
103
103
new_kwargs = {k : kwargs [k ] for k in kwargs if k not in ["by" , "bins" ]}
104
104
return histogram (data_frame , ** new_kwargs )
105
105
raise NotImplementedError (
106
- "The plotly.express backend doesn't yet support kind='%s '" % kind
106
+ "kind='%s' not yet supported for plotting.backend='plotly '" % kind
107
107
)
108
108
109
109
110
110
def boxplot_frame (data_frame , ** kwargs ):
111
111
"""
112
112
Pandas plotting backend function, not meant to be called directly.
113
- To activate, set pandas.options.plotting.backend="plotly.express.pandas_backend "
113
+ To activate, set pandas.options.plotting.backend="plotly"
114
114
See https://github.com/pandas-dev/pandas/blob/master/pandas/plotting/__init__.py
115
115
"""
116
116
from .express import box
@@ -124,7 +124,7 @@ def boxplot_frame(data_frame, **kwargs):
124
124
def hist_frame (data_frame , ** kwargs ):
125
125
"""
126
126
Pandas plotting backend function, not meant to be called directly.
127
- To activate, set pandas.options.plotting.backend="plotly.express.pandas_backend "
127
+ To activate, set pandas.options.plotting.backend="plotly"
128
128
See https://github.com/pandas-dev/pandas/blob/master/pandas/plotting/__init__.py
129
129
"""
130
130
from .express import histogram
@@ -138,7 +138,7 @@ def hist_frame(data_frame, **kwargs):
138
138
def hist_series (data_frame , ** kwargs ):
139
139
"""
140
140
Pandas plotting backend function, not meant to be called directly.
141
- To activate, set pandas.options.plotting.backend="plotly.express.pandas_backend "
141
+ To activate, set pandas.options.plotting.backend="plotly"
142
142
See https://github.com/pandas-dev/pandas/blob/master/pandas/plotting/__init__.py
143
143
"""
144
144
from .express import histogram
0 commit comments