removed quotes around "True"

the inplace argument should be boolean, not string
This commit is contained in:
vivek-v-rao 2017-06-27 21:30:57 -04:00 committed by GitHub
parent a7d692cbf9
commit 4e016769a6

View File

@ -159,7 +159,7 @@
"outputs": [],
"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"
]
},