Skip to content

Commit

Permalink
Added tests for parallel coordinates plotting
Browse files Browse the repository at this point in the history
  • Loading branch information
orbitfold committed Jun 17, 2012
1 parent 665c1c4 commit b74a7ce
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions pandas/tests/test_graphics.py
Original file line number Diff line number Diff line change
Expand Up @@ -271,6 +271,14 @@ def test_andrews_curves(self):
df = read_csv(path)
_check_plot_works(andrews_curves, df, 'Name')

@slow
def test_parallel_coordinates(self):
from pandas import read_csv
from pandas.tools.plotting import parallel_coordinates
path = os.path.join(curpath(), 'data/iris.csv')
df = read_csv(path)
_check_plot_works(parallel_coordinates, df, 'Name')

@slow
def test_plot_int_columns(self):
df = DataFrame(np.random.randn(100, 4)).cumsum()
Expand Down

0 comments on commit b74a7ce

Please sign in to comment.