Aan de slagBegin gratis

Pairplot

You'll now further investigate the data using a pairplot.

A pairplot can be a useful tool since it combines histograms with scatter-plots showing the distribution between 2 columns.

You'll work with the water-status data we've seen before.

pandas as pd and matplotlib.pyplot as plt have been imported for you, and the data is available as data.

Deze oefening maakt deel uit van de cursus

Analyzing IoT Data in Python

Bekijk cursus

Interactieve oefening met praktijkervaring

Probeer deze oefening door deze voorbeeldcode aan te vullen.

# Import required modules
____

# Create a pairplot
____.____(data)

# Show plot
plt.show()
Code bewerken en uitvoeren