no commit message

parent 97a81240
......@@ -617,12 +617,12 @@
}
],
"source": [
"x=sorted_data.index.tolist()\n",
"y_wa=list(sorted_data[\"Wages\"])\n",
"y_wh=list(sorted_data[\"Wheat\"])\n",
"x=list(raw_data[\"Year\"]\n",
"y_wa=list(raw_data[\"Wages\"])\n",
"y_wh=list(raw_data[\"Wheat\"])\n",
"graphique1 = plt.figure()\n",
"ax = graphique1.add_subplot(111)\n",
"plt.ylabel('Livres')\n",
"ax.set = plt.ylabel('Livres')\n",
"ax.xaxis.set_major_locator(plt.MultipleLocator(50))\n",
"sorted_data['Wheat'].plot(kind='bar',ax=ax,legend=True,color='black')\n",
"sorted_data['Wages'].plot(title= \"Evolution des salaires et du prix du blé\",ax=ax,legend=True,linewidth=5.0)"
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment