We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 665c1c4 commit b74a7ceCopy full SHA for b74a7ce
pandas/tests/test_graphics.py
@@ -271,6 +271,14 @@ def test_andrews_curves(self):
271
df = read_csv(path)
272
_check_plot_works(andrews_curves, df, 'Name')
273
274
+ @slow
275
+ def test_parallel_coordinates(self):
276
+ from pandas import read_csv
277
+ from pandas.tools.plotting import parallel_coordinates
278
+ path = os.path.join(curpath(), 'data/iris.csv')
279
+ df = read_csv(path)
280
+ _check_plot_works(parallel_coordinates, df, 'Name')
281
+
282
@slow
283
def test_plot_int_columns(self):
284
df = DataFrame(np.random.randn(100, 4)).cumsum()
0 commit comments