@@ -24,7 +24,7 @@ def table(ax, data, rowLabels=None, colLabels=None, **kwargs):
24
24
-------
25
25
matplotlib table object
26
26
"""
27
- plot_backend = _get_plot_backend ()
27
+ plot_backend = _get_plot_backend ("matplotlib" )
28
28
return plot_backend .table (
29
29
ax = ax , data = data , rowLabels = None , colLabels = None , ** kwargs
30
30
)
@@ -48,7 +48,7 @@ def register(explicit=True):
48
48
--------
49
49
deregister_matplotlib_converter
50
50
"""
51
- plot_backend = _get_plot_backend ()
51
+ plot_backend = _get_plot_backend ("matplotlib" )
52
52
plot_backend .register (explicit = explicit )
53
53
54
54
@@ -67,7 +67,7 @@ def deregister():
67
67
--------
68
68
deregister_matplotlib_converters
69
69
"""
70
- plot_backend = _get_plot_backend ()
70
+ plot_backend = _get_plot_backend ("matplotlib" )
71
71
plot_backend .deregister ()
72
72
73
73
@@ -124,7 +124,7 @@ def scatter_matrix(
124
124
>>> df = pd.DataFrame(np.random.randn(1000, 4), columns=['A','B','C','D'])
125
125
>>> scatter_matrix(df, alpha=0.2)
126
126
"""
127
- plot_backend = _get_plot_backend ()
127
+ plot_backend = _get_plot_backend ("matplotlib" )
128
128
return plot_backend .scatter_matrix (
129
129
frame = frame ,
130
130
alpha = alpha ,
@@ -202,7 +202,7 @@ def radviz(frame, class_column, ax=None, color=None, colormap=None, **kwds):
202
202
... })
203
203
>>> rad_viz = pd.plotting.radviz(df, 'Category') # doctest: +SKIP
204
204
"""
205
- plot_backend = _get_plot_backend ()
205
+ plot_backend = _get_plot_backend ("matplotlib" )
206
206
return plot_backend .radviz (
207
207
frame = frame ,
208
208
class_column = class_column ,
@@ -249,7 +249,7 @@ def andrews_curves(
249
249
-------
250
250
class:`matplotlip.axis.Axes`
251
251
"""
252
- plot_backend = _get_plot_backend ()
252
+ plot_backend = _get_plot_backend ("matplotlib" )
253
253
return plot_backend .andrews_curves (
254
254
frame = frame ,
255
255
class_column = class_column ,
@@ -307,7 +307,7 @@ def bootstrap_plot(series, fig=None, size=50, samples=500, **kwds):
307
307
>>> s = pd.Series(np.random.uniform(size=100))
308
308
>>> fig = pd.plotting.bootstrap_plot(s) # doctest: +SKIP
309
309
"""
310
- plot_backend = _get_plot_backend ()
310
+ plot_backend = _get_plot_backend ("matplotlib" )
311
311
return plot_backend .bootstrap_plot (
312
312
series = series , fig = fig , size = size , samples = samples , ** kwds
313
313
)
@@ -374,7 +374,7 @@ def parallel_coordinates(
374
374
color=('#556270', '#4ECDC4', '#C7F464'))
375
375
>>> plt.show()
376
376
"""
377
- plot_backend = _get_plot_backend ()
377
+ plot_backend = _get_plot_backend ("matplotlib" )
378
378
return plot_backend .parallel_coordinates (
379
379
frame = frame ,
380
380
class_column = class_column ,
@@ -405,7 +405,7 @@ def lag_plot(series, lag=1, ax=None, **kwds):
405
405
-------
406
406
class:`matplotlib.axis.Axes`
407
407
"""
408
- plot_backend = _get_plot_backend ()
408
+ plot_backend = _get_plot_backend ("matplotlib" )
409
409
return plot_backend .lag_plot (series = series , lag = lag , ax = ax , ** kwds )
410
410
411
411
@@ -424,7 +424,7 @@ def autocorrelation_plot(series, ax=None, **kwds):
424
424
-------
425
425
class:`matplotlib.axis.Axes`
426
426
"""
427
- plot_backend = _get_plot_backend ()
427
+ plot_backend = _get_plot_backend ("matplotlib" )
428
428
return plot_backend .autocorrelation_plot (series = series , ax = ax , ** kwds )
429
429
430
430
@@ -451,7 +451,7 @@ def tsplot(series, plotf, ax=None, **kwargs):
451
451
FutureWarning ,
452
452
stacklevel = 2 ,
453
453
)
454
- plot_backend = _get_plot_backend ()
454
+ plot_backend = _get_plot_backend ("matplotlib" )
455
455
return plot_backend .tsplot (series = series , plotf = plotf , ax = ax , ** kwargs )
456
456
457
457
0 commit comments