Aan de slagBegin gratis

Understanding the data

Let's now make some sense from the data. By calculating and printing the summary statistics, you can get a quick overview of the data.

You'll get count, mean, std, percentiles, min and max values for each numeric column. This should help us identify columns which might need special care.

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 pandas as pd

# Read file from json
df_env = ____

# Print summary statistics
print(____)
Code bewerken en uitvoeren