@@ -149,8 +149,8 @@ def _get_marker_compat(marker):
149
149
def radviz (frame , class_column , ax = None , color = None , colormap = None , ** kwds ):
150
150
"""RadViz - a multivariate data visualization algorithm
151
151
152
- Parameters:
153
- -----------
152
+ Parameters
153
+ ----------
154
154
frame: DataFrame
155
155
class_column: str
156
156
Column name containing class names
@@ -163,8 +163,8 @@ def radviz(frame, class_column, ax=None, color=None, colormap=None, **kwds):
163
163
kwds: keywords
164
164
Options to pass to matplotlib scatter plotting method
165
165
166
- Returns:
167
- --------
166
+ Returns
167
+ -------
168
168
ax: Matplotlib axis object
169
169
"""
170
170
import matplotlib .pyplot as plt
@@ -247,8 +247,8 @@ def andrews_curves(frame, class_column, ax=None, samples=200, color=None,
247
247
linearly spaced between -pi and +pi. Each row of frame then corresponds to
248
248
a single curve.
249
249
250
- Parameters:
251
- -----------
250
+ Parameters
251
+ ----------
252
252
frame : DataFrame
253
253
Data to be plotted, preferably normalized to (0.0, 1.0)
254
254
class_column : Name of the column containing class names
@@ -262,8 +262,8 @@ def andrews_curves(frame, class_column, ax=None, samples=200, color=None,
262
262
kwds: keywords
263
263
Options to pass to matplotlib plotting method
264
264
265
- Returns:
266
- --------
265
+ Returns
266
+ -------
267
267
ax: Matplotlib axis object
268
268
269
269
"""
@@ -325,17 +325,17 @@ def f(t):
325
325
def bootstrap_plot (series , fig = None , size = 50 , samples = 500 , ** kwds ):
326
326
"""Bootstrap plot.
327
327
328
- Parameters:
329
- -----------
328
+ Parameters
329
+ ----------
330
330
series: Time series
331
331
fig: matplotlib figure object, optional
332
332
size: number of data points to consider during each sampling
333
333
samples: number of times the bootstrap procedure is performed
334
334
kwds: optional keyword arguments for plotting commands, must be accepted
335
335
by both hist and plot
336
336
337
- Returns:
338
- --------
337
+ Returns
338
+ -------
339
339
fig: matplotlib figure
340
340
"""
341
341
import random
@@ -503,15 +503,15 @@ def parallel_coordinates(frame, class_column, cols=None, ax=None, color=None,
503
503
def lag_plot (series , lag = 1 , ax = None , ** kwds ):
504
504
"""Lag plot for time series.
505
505
506
- Parameters:
507
- -----------
506
+ Parameters
507
+ ----------
508
508
series: Time series
509
509
lag: lag of the scatter plot, default 1
510
510
ax: Matplotlib axis object, optional
511
511
kwds: Matplotlib scatter method keyword arguments, optional
512
512
513
- Returns:
514
- --------
513
+ Returns
514
+ -------
515
515
ax: Matplotlib axis object
516
516
"""
517
517
import matplotlib .pyplot as plt
0 commit comments