ComeçarComece de graça

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!

Este exercício faz parte do curso

Practicing Statistics Interview Questions in Python

Ver curso

Exercício interativo prático

Experimente este exercício completando este código de exemplo.

# Display a scatter plot and examine the relationship
plt.scatter(____, ____)
plt.show()
Editar e executar o código