Skip to content

Commit 3afaa59

Browse files
committed
Minor corrections
1 parent 8d5885f commit 3afaa59

2 files changed

+2
-2
lines changed

Lesson 1-2-2 Programmatic data wrangling with Python and Pandas.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3352,7 +3352,7 @@
33523352
"outputs": [],
33533353
"source": [
33543354
"# Drop the rows from the bottom of the data we want to keep, to the end (defined as len(df))\n",
3355-
"df = df.drop(np.arange(126,len(df)), axis=0).reset_index(drop=True)"
3355+
"df = df.drop(np.arange(129,len(df)), axis=0).reset_index(drop=True)"
33563356
]
33573357
},
33583358
{

Leçon 1-2-2 La préparation de données par programmation avec Python et Pandas.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3350,7 +3350,7 @@
33503350
"outputs": [],
33513351
"source": [
33523352
"# Déposer les lignes du bas des données que nous voulons conserver, jusqu'à la fin (défini comme len(df))\n",
3353-
"df = df.drop(np.arange(126,len(df)), axis=0).reset_index(drop=True)"
3353+
"df = df.drop(np.arange(129,len(df)), axis=0).reset_index(drop=True)"
33543354
]
33553355
},
33563356
{

0 commit comments

Comments
 (0)