Types of relationships
How do we effectively identify these relationships in practice? The first and often only step you need, is to visualize the data using a scatter plot. In this exercise, you'll examine a few different relationships, produce the scatter plot, and then consider what each plot tells us about the relationship.
You'll work with a few different features in the Australian weather dataset from before, imported as weather
for you to use. For the sake of this exercise, make sure you pass features in the order they are given to you!
Diese Übung ist Teil des Kurses
Practicing Statistics Interview Questions in Python
Interaktive Übung
Versuche dich an dieser Übung, indem du diesen Beispielcode vervollständigst.
# Display a scatter plot and examine the relationship
plt.scatter(____, ____)
plt.show()