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 0c7ce16170
commit 08f31b2900

View File

@@ -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"
]
},