Heatmaps
You're going to keep working with the environmental dataset from the previous lessons. However, it now contains 3 additional columns about a river's water-status in the same geographic area.
The additional columns are:
- flow-rate in m3/s
- water-level in cm
- water-temperature in °C
You'll now try to find correlations between the columns.
pandas as pd, seaborn as sns and matplotlib.pyplot as plt have been imported for you.
この演習はコースの一部です
Analyzing IoT Data in Python
実践的なインタラクティブ演習
このサンプルコードを完成させて、この演習に挑戦してみましょう。
# Calculate correlation
____
# Print correlation
print(____)