Skip to content

Commit 3b4a0e6

Browse files
authored
Merge pull request #2 from BenDz/patch-1
Comment typo
2 parents 80e6d21 + f1b0682 commit 3b4a0e6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Basic Classification Example with TensorFlow.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@
147147
"source": [
148148
"dataframe = pd.read_csv(\"data.csv\") # Let's have Pandas load our dataset as a dataframe\n",
149149
"dataframe = dataframe.drop([\"index\", \"price\", \"sq_price\"], axis=1) # Remove columns we don't care about\n",
150-
"dataframe = dataframe[0:10] # We'll only use the first 10 columns of the dataset in this example\n",
150+
"dataframe = dataframe[0:10] # We'll only use the first 10 rows of the dataset in this example\n",
151151
"dataframe # Let's have the notebook show us how the dataframe looks now"
152152
]
153153
},

0 commit comments

Comments
 (0)