Skip to content

Commit 77df7f6

Browse files
author
anton
committed
rename
1 parent e998747 commit 77df7f6

17 files changed

+26
-657
lines changed
File renamed without changes.

05_Test_d_ipotesi.py renamed to 05_hypothesis_test.py

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

22
exec(open("Utils.py").read(), globals())
33
exec(open("01_Importazione_dati_e_moduli.py").read(), globals())
4-
exec(open('03_Descrittive.py').read(), globals())
4+
exec(open('03_Descriptive.py').read(), globals())
55

66

77
##############################################

10_PCA.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111

1212
exec(open("Utils.py").read(), globals())
1313
exec(open("01_Importazione_dati_e_moduli.py").read(), globals())
14-
#exec(open('03_Descrittive.py').read(), globals())
15-
#exec(open("05_Test_d_ipotesi.py").read(), globals())
14+
#exec(open('03_Descriptive.py').read(), globals())
15+
#exec(open("05_hypothesis_test.py").read(), globals())
1616

1717

1818
n_components = []

15_Modeling.py renamed to 15_Modeling_all_cell_line.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77

88
exec(open("Utils.py").read())
99
exec(open("01_Importazione_dati_e_moduli.py").read())
10-
# exec(open('03_Descrittive.py').read())
11-
# exec(open("05_Test_d_ipotesi.py").read())
10+
# exec(open('03_Descriptive.py').read())
11+
# exec(open("05_hypothesis_test.py").read())
1212
exec(open("10_PCA.py").read(), globals())
1313

1414

17_Modeling_single_cell_line.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77

88
from Utils import *
99
exec(open("01_Importazione_dati_e_moduli.py").read())
10-
# exec(open('03_Descrittive.py').read(), globals())
11-
# exec(open("05_Test_d_ipotesi.py").read())
10+
# exec(open('03_Descriptive.py').read(), globals())
11+
# exec(open("05_hypothesis_test.py").read())
1212
exec(open("10_PCA.py").read())
1313

1414

20_Modeling_Cancer_type.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88

99
exec(open("Utils.py").read(), globals())
1010
exec(open("01_Importazione_dati_e_moduli.py").read(), globals())
11-
#exec(open('03_Descrittive.py').read(), globals())
12-
#exec(open("05_Test_d_ipotesi.py").read(), globals())
11+
#exec(open('03_Descriptive.py').read(), globals())
12+
#exec(open("05_hypothesis_test.py").read(), globals())
1313
exec(open("10_PCA.py").read(), globals())
14-
#exec(open("15_Modeling.py").read(), globals())
14+
#exec(open("15_Modeling_all_cell_line.py").read(), globals())
1515

1616

1717

40_Richieste_specifiche.py renamed to 40_Modeling_blood_cell_line.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77

88
exec(open("Utils.py").read(), globals())
99
exec(open("01_Importazione_dati_e_moduli.py").read(), globals())
10-
# exec(open('03_Descrittive.py').read(), globals())
11-
# exec(open("05_Test_d_ipotesi.py").read(), globals())
10+
# exec(open('03_Descriptive.py').read(), globals())
11+
# exec(open("05_hypothesis_test.py").read(), globals())
1212
exec(open("10_PCA.py").read(), globals())
1313

1414

45_Richieste_specifiche.py renamed to 45_Modeling_blood_cell_line_all.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77

88
exec(open("Utils.py").read(), globals())
99
exec(open("01_Importazione_dati_e_moduli.py").read(), globals())
10-
# exec(open('03_Descrittive.py').read(), globals())
11-
# exec(open("05_Test_d_ipotesi.py").read(), globals())
10+
# exec(open('03_Descriptive.py').read(), globals())
11+
# exec(open("05_hypothesis_test.py").read(), globals())
1212
exec(open("10_PCA.py").read(), globals())
1313

1414

50_Post_processing.py renamed to 50_Post_processing_all.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77

88
exec(open("Utils.py").read(), globals())
99
exec(open("01_Importazione_dati_e_moduli.py").read(), globals())
10-
#exec(open('03_Descrittive.py').read(), globals())
11-
#exec(open("05_Test_d_ipotesi.py").read(), globals())
10+
#exec(open('03_Descriptive.py').read(), globals())
11+
#exec(open("05_hypothesis_test.py").read(), globals())
1212

1313

1414
n_components = []

55_Post_processing.py renamed to 55_Post_processing_single.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515

1616
exec(open("Utils.py").read(), globals())
1717
exec(open("01_Importazione_dati_e_moduli.py").read(), globals())
18-
#exec(open('03_Descrittive.py').read(), globals())
19-
#exec(open("05_Test_d_ipotesi.py").read(), globals())
18+
#exec(open('03_Descriptive.py').read(), globals())
19+
#exec(open("05_hypothesis_test.py").read(), globals())
2020

2121
comp = [10, 20, 50, 70, 100, 150, 200, 250, 300, 350, 400, 450]
2222
import matplotlib.pyplot as plt

65_Post_processing_NN.py renamed to 65_Post_processing_DL.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
exec(open("Utils.py").read(), globals())
1010
exec(open("01_Importazione_dati_e_moduli.py").read(), globals())
11-
#exec(open('03_Descrittive.py').read(), globals())
12-
#exec(open("05_Test_d_ipotesi.py").read(), globals())
11+
#exec(open('03_Descriptive.py').read(), globals())
12+
#exec(open("05_hypothesis_test.py").read(), globals())
1313

1414

1515
from sklearn.grid_search import GridSearchCV

80_Other_attempts.py renamed to 80_Modeling_other.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
exec(open("Utils.py").read(), globals())
1010
exec(open("01_Importazione_dati_e_moduli.py").read(), globals())
11-
#exec(open('03_Descrittive.py').read(), globals())
12-
#exec(open("05_Test_d_ipotesi.py").read(), globals())
11+
#exec(open('03_Descriptive.py').read(), globals())
12+
#exec(open("05_hypothesis_test.py").read(), globals())
1313

1414
#######################################################################
1515
#######################################################################

0 commit comments

Comments
 (0)