File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ Generating the MCM on the [following example](https://github.com/MSD-IRIMAS/Mult
3737
3838```
3939import pandas as pd
40- from MCM import MCM
40+ from multi_comp_matrix import MCM
4141
4242df_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```
6161import pandas as pd
62- from MCM import MCM
62+ from multi_comp_matrix import MCM
6363
6464df_results = pd.read_csv('path/to/csv')
6565
@@ -83,7 +83,7 @@ and by excluding them in the rows.
8383
8484```
8585import pandas as pd
86- from MCM import MCM
86+ from multi_comp_matrix import MCM
8787
8888df_results = pd.read_csv('path/to/csv')
8989
Original file line number Diff line number Diff line change 44
55if __name__ == "__main__" :
66 path_res = "./results_example.csv"
7- output_dir = ".. /"
7+ output_dir = "./"
88
99 df_results = pd .read_csv (path_res )
1010
You can’t perform that action at this time.
0 commit comments