Spaces:
Sleeping
Sleeping
Commit
·
66ad10a
1
Parent(s):
ac213c9
Update app.py
Browse files
app.py
CHANGED
@@ -9,7 +9,8 @@ st.set_option('deprecation.showPyplotGlobalUse', False)
|
|
9 |
seed=42
|
10 |
|
11 |
annotations = pd.read_csv("annotations_dataset.csv")
|
12 |
-
annotations = annotations.set_index("Gene")
|
|
|
13 |
|
14 |
training_data = pd.read_csv("./selected_features_training_data.csv", header=0)
|
15 |
training_data.columns = [
|
|
|
9 |
seed=42
|
10 |
|
11 |
annotations = pd.read_csv("annotations_dataset.csv")
|
12 |
+
annotations = annotations.set_index("Gene")
|
13 |
+
annotations.rename_axis(index='Gene', inplace=True)
|
14 |
|
15 |
training_data = pd.read_csv("./selected_features_training_data.csv", header=0)
|
16 |
training_data.columns = [
|