Skip to content

Commit

Permalink
removed quotes around "True"
Browse files Browse the repository at this point in the history
the inplace argument should be boolean, not string
  • Loading branch information
vivek-v-rao authored Jun 28, 2017
1 parent 0c7ce16 commit 08f31b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 01_the_machine_learning_landscape.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -1772,7 +1772,7 @@
],
"source": [
"full_country_stats = pd.merge(left=oecd_bli, right=gdp_per_capita, left_index=True, right_index=True)\n",
"full_country_stats.sort_values(by=\"GDP per capita\", inplace=\"True\")\n",
"full_country_stats.sort_values(by=\"GDP per capita\", inplace=True)\n",
"full_country_stats"
]
},
Expand Down

0 comments on commit 08f31b2

Please sign in to comment.