@@ -411,7 +411,7 @@ def bootstrap_plot(series, fig=None, size=50, samples=500, **kwds):
411
411
return fig
412
412
413
413
414
- def parallel_coordinates (data , class_column , cols = None , ax = None , colors = None ,
414
+ def parallel_coordinates (data , class_column , cols = None , ax = None , colors = None ,
415
415
** kwds ):
416
416
"""Parallel coordinates plotting.
417
417
@@ -746,6 +746,8 @@ def _setup_subplots(self):
746
746
ax = self ._maybe_right_yaxis (ax )
747
747
else :
748
748
fig = self .ax .get_figure ()
749
+ if self .figsize is not None :
750
+ fig .set_size_inches (self .figsize )
749
751
ax = self ._maybe_right_yaxis (self .ax )
750
752
751
753
axes = [ax ]
@@ -1373,10 +1375,11 @@ def plot_frame(frame=None, x=None, y=None, subplots=False, sharex=True,
1373
1375
if y is not None :
1374
1376
if com .is_integer (y ) and not frame .columns .holds_integer ():
1375
1377
y = frame .columns [y ]
1376
- return plot_series (frame [y ], label = y , kind = kind , use_index = True ,
1378
+ return plot_series (frame [y ], label = y , kind = kind , use_index = use_index ,
1377
1379
rot = rot , xticks = xticks , yticks = yticks ,
1378
1380
xlim = xlim , ylim = ylim , ax = ax , style = style ,
1379
1381
grid = grid , logy = logy , secondary_y = secondary_y ,
1382
+ title = title , figsize = figsize , fontsize = fontsize ,
1380
1383
** kwds )
1381
1384
1382
1385
plot_obj = klass (frame , kind = kind , subplots = subplots , rot = rot ,
@@ -1393,7 +1396,6 @@ def plot_frame(frame=None, x=None, y=None, subplots=False, sharex=True,
1393
1396
else :
1394
1397
return plot_obj .axes [0 ]
1395
1398
1396
-
1397
1399
def plot_series (series , label = None , kind = 'line' , use_index = True , rot = None ,
1398
1400
xticks = None , yticks = None , xlim = None , ylim = None ,
1399
1401
ax = None , style = None , grid = None , legend = False , logy = False ,
0 commit comments