Datasets:
Update Preprocessing Script.py
Browse files- Preprocessing Script.py +1 -1
Preprocessing Script.py
CHANGED
|
@@ -62,7 +62,7 @@ for substance_id, alert in problems:
|
|
| 62 |
#5. Select columns and rename the dataset
|
| 63 |
|
| 64 |
AA.rename(columns={'X': 'new SMILES'}, inplace=True)
|
| 65 |
-
AA[['new SMILES', 'substance_id', 'aggref_index', 'logP']]
|
| 66 |
|
| 67 |
#6. Import modules to split the dataset
|
| 68 |
|
|
|
|
| 62 |
#5. Select columns and rename the dataset
|
| 63 |
|
| 64 |
AA.rename(columns={'X': 'new SMILES'}, inplace=True)
|
| 65 |
+
newAA = AA[['new SMILES', 'substance_id', 'aggref_index', 'logP', 'reference']]
|
| 66 |
|
| 67 |
#6. Import modules to split the dataset
|
| 68 |
|