शुरू करेंमुफ़्त में शुरू करें

Styling a scatterplot

In this exercise, you'll be using plt.scatter() to plot the father and son height data from the video. The father_son DataFrame has been pre-loaded for you. In each scatterplot, plot father_son.fheight as x-axis and father_son.sheight as y-axis.

यह अभ्यास पाठ्यक्रम का हिस्सा है

Visualizing Geospatial Data in Python

पाठ्यक्रम देखें

इंटरैक्टिव व्यावहारिक अभ्यास

इस अभ्यास को इस नमूना कोड को पूरा करके आज़माएँ।

# Import matplotlib.pyplot
import matplotlib.pyplot as ____

# Scatterplot 1 - father heights vs. son heights with darkred square markers
plt.scatter(father_son.fheight, father_son.sheight, ____ = 'darkred', ____ = 's')

# Show your plot
plt.____()
कोड संपादित करें और चलाएँ