Skip to content

Commit 039870b

Browse files
committed
Added radviz test
1 parent 0e2c9bb commit 039870b

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

pandas/tests/test_graphics.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -314,6 +314,14 @@ def test_andrews_curves(self):
314314
df = read_csv(path)
315315
_check_plot_works(andrews_curves, df, 'Name')
316316

317+
@slow
318+
def test_radviz(self):
319+
from pandas import read_csv
320+
from pandas.tools.plotting import radviz
321+
path = os.path.join(curpath(), 'data/iris.csv')
322+
df = read_csv(path)
323+
_check_plot_works(radviz, df, 'Name')
324+
317325
@slow
318326
def test_plot_int_columns(self):
319327
df = DataFrame(np.random.randn(100, 4)).cumsum()

0 commit comments

Comments
 (0)