Skip to content

Commit 5fb16be

Browse files
update (#7)
1 parent ecf3401 commit 5fb16be

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Generating the MCM on the [following example](https://github.com/MSD-IRIMAS/Mult
3737

3838
```
3939
import pandas as pd
40-
from MCM import MCM
40+
from multi_comp_matrix import MCM
4141
4242
df_results = pd.read_csv('path/to/csv')
4343
@@ -59,7 +59,7 @@ Generating the MCM on the [following example](https://github.com/MSD-IRIMAS/Mult
5959

6060
```
6161
import pandas as pd
62-
from MCM import MCM
62+
from multi_comp_matrix import MCM
6363
6464
df_results = pd.read_csv('path/to/csv')
6565
@@ -83,7 +83,7 @@ and by excluding them in the rows.
8383

8484
```
8585
import pandas as pd
86-
from MCM import MCM
86+
from multi_comp_matrix import MCM
8787
8888
df_results = pd.read_csv('path/to/csv')
8989

main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
if __name__ == "__main__":
66
path_res = "./results_example.csv"
7-
output_dir = "../"
7+
output_dir = "./"
88

99
df_results = pd.read_csv(path_res)
1010

0 commit comments

Comments
 (0)