Scatterplots
The pyplot module can also be used to make other types of plots, like scatterplots. Let's make a scatterplot of the company's stock prices over time.
Two lists, days and prices are available in your workspace.
Diese Übung ist Teil des Kurses
Introduction to Python for Finance
Anleitung zur Übung
- Draw a scatterplot with
dayson the x-axis andpriceson the y-axis with green markers. - Display the plot with the
show()function.
Interaktive Übung
Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.
# Import pyplot as plt
import matplotlib.pyplot as plt
# Plot price as a function of time
plt.____(____, ____, color='____', s=0.1)
# Show plot
____