Skip to content

Commit

Permalink
fixed column names
Browse files Browse the repository at this point in the history
  • Loading branch information
smuellerd committed Jul 24, 2024
1 parent 4fb77f2 commit 5955256
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion decoupler/tests/test_zscore.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def test_zscore():

def test_run_zscore():
m = np.array([[-7., -1., 1., 1.], [-4., -2., 1., 2.], [1., 2., 5., 1.], [1., 1., -6., -8.], [-8., -7., 1., 1.]])
r = np.array(['S1', 'S2', 'S3', 'S4'])
r = np.array(['S1', 'S2', 'S3', 'S4', 'S5'])
c = np.array(['G1', 'G2', 'G3', 'G4'])
df = pd.DataFrame(m, index=r, columns=c)
net = pd.DataFrame([['T1', 'G1', 1], ['T1', 'G2', 1], ['T2', 'G3', -1], ['T2', 'G4', -1]],
Expand Down

0 comments on commit 5955256

Please sign in to comment.