Skip to content

Commit 0a9ceb8

Browse files
authored
Update test_heatmap_corr.py
1 parent 5a76045 commit 0a9ceb8

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

test/test_heatmap_corr.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
import matplotlib.pyplot as plt
33
import seaborn as sns
44
import pandas as pd
5-
from heatmap_corr import heatmap
5+
from toolkit.plot import heatmap
66

77
def test_heatmap():
88
df = pd.DataFrame({'A': [1, 2, 3], 'B': [4, 5, 6], 'C': [7, 8, 9], 'target': [10, 20, 30]})
99

1010
heatmap(df, 2, 'target', None)
1111

1212

13-
13+

0 commit comments

Comments
 (0)