"ax1.set_ylabel('Weekly Wages (in shillings)', color='g')\n",
"ax1.set_ylabel('Weekly Wages (in shillings)', color='g')\n",
"ax2.set_ylabel('the Price of Wheat for Each Quarter (in shillings)', color='b')\n",
"ax2.set_ylabel('the Price of Wheat for Each Quarter (in shillings)', color='b')\n",
"plt.rcParams[\"figure.figsize\"] = (18,9)\n",
"plt.minorticks_on()\n",
"plt.show()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Step 2 : Improve the units and the data presentation\n",
"We would like to make our graph more relatable by changing the unit 'shillings' into 'pounds' which is the current currency in England. Moreover we will now present the wages in poundsterlings per month, which is more common to describe a salary (we consider 1 month = 4 weeks). Lastly, the notion of a 'Quarter' is also not fammiliar these days, therefore we will change the unit of the wheat's weight into metric system kilograms (kg). To achieve of all these conversions we simply apply the following operations."