Adding axis labels and titles
It is important to add labels to your plot so it's clear to other people what information it is trying to convey. In this exercise, you will add labels to the plot you created in the last one.
Diese Übung ist Teil des Kurses
Introduction to Python for Finance
Anleitung zur Übung
- Add the following labels:
- x-axis:
'Days'
- y-axis:
'Prices, $'
- title:
'Company Stock Prices Over Time'
- x-axis:
Interaktive Übung
Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.
import matplotlib.pyplot as plt
# Plot price as a function of time
plt.plot(days, prices, color="red", linestyle="--")
# Add x and y labels
____('Days')
____('Prices, $')
# Add plot title
____('Company Stock Prices Over Time')
# Show plot
plt.show()