Skip to content

Commit 77df7f6

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

17 files changed

+26
-657
lines changed

Diff for: 03_Descrittive.py renamed to 03_Descriptive.py

File renamed without changes.

Diff for: 05_Test_d_ipotesi.py renamed to 05_hypothesis_test.py

+1-1
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
##############################################

Diff for: 10_PCA.py

+2-2
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 = []

Diff for: 15_Modeling.py renamed to 15_Modeling_all_cell_line.py

+2-2
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

Diff for: 17_Modeling_single_cell_line.py

+2-2
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

Diff for: 20_Modeling_Cancer_type.py

+3-3
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

Diff for: 40_Richieste_specifiche.py renamed to 40_Modeling_blood_cell_line.py

+2-2
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

Diff for: 45_Richieste_specifiche.py renamed to 45_Modeling_blood_cell_line_all.py

+2-2
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

Diff for: 50_Post_processing.py renamed to 50_Post_processing_all.py

+2-2
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 = []

Diff for: 55_Post_processing.py renamed to 55_Post_processing_single.py

+2-2
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

Diff for: 65_Post_processing_NN.py renamed to 65_Post_processing_DL.py

+2-2
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

Diff for: 80_Other_attempts.py renamed to 80_Modeling_other.py

+2-2
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)