Skip to content

Commit a39ad5d

Browse files
Created using Colab
1 parent 67ec34b commit a39ad5d

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

data_preprocessing_template.ipynb

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
"metadata": {
55
"colab": {
66
"provenance": [],
7-
"toc_visible": true,
87
"include_colab_link": true
98
},
109
"kernelspec": {
@@ -51,7 +50,7 @@
5150
"import matplotlib.pyplot as plt\n",
5251
"import pandas as pd"
5352
],
54-
"execution_count": null,
53+
"execution_count": 2,
5554
"outputs": []
5655
},
5756
{
@@ -73,7 +72,7 @@
7372
"X = dataset.iloc[:, :-1].values\n",
7473
"y = dataset.iloc[:, -1].values"
7574
],
76-
"execution_count": null,
75+
"execution_count": 3,
7776
"outputs": []
7877
},
7978
{
@@ -94,7 +93,7 @@
9493
"from sklearn.model_selection import train_test_split\n",
9594
"X_train, X_test, y_train, y_test = train_test_split(X, y, test_size = 0.2, random_state = 0)"
9695
],
97-
"execution_count": null,
96+
"execution_count": 5,
9897
"outputs": []
9998
}
10099
]

0 commit comments

Comments
 (0)