Skip to content

Commit 030b94c

Browse files
committed
Update README
1 parent 39e0f64 commit 030b94c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ df = pd.read_csv("data.csv", index_col=0)
9090
sICA = StabilizedICA(n_components=45, n_runs=30 ,plot=True, n_jobs = -1)
9191
sICA.fit(df)
9292

93-
Metagenes = pd.DataFrame(sICA.S_ , columns = df.index , index = ['metagene ' + str(i) for i in range(sICA.S_.shape[0])])
93+
Metagenes = pd.DataFrame(sICA.S_, columns = df.columns, index = ['metagene ' + str(i) for i in range(sICA.S_.shape[0])])
9494
Metagenes.head()
9595
```
9696

0 commit comments

Comments
 (0)