A Bubble chart with two variables

Report a typo

Suppose you want to create a Bubble chart with only two variables. In fact, this is a basic scatter plot.

Write down the line that creates a basic scatter plot.

import matplotlib.pyplot as plt

months = range(1, 13)
avg_temperature = [8, 12, 15, 20, 21, 23, 24, 23, 23, 20, 14, 11]

# Your line of code here
plt.show()

A scatter plot with the months on the X axis and the average temperatures on the Y axis

Enter a short text
___

Create a free account to access the full topic