LoslegenKostenlos loslegen

Read data from file

The data you will work with now includes additional columns about the environment like humidity and air pressure. All data can be consumed seperately from the public API, and I've gathered, combined and stored 3 months for this course.

After having acquired and saved the data to disk, you should have a look at what was actually downloaded and stored.

You'll now load the data from CSV and JSON, print the head and look at the DataFrame summary.

Diese Übung ist Teil des Kurses

Analyzing IoT Data in Python

Kurs anzeigen

Interaktive Übung

Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.

import pandas as pd

# Read file
df_env = ____(____, parse_dates=[____])

# Print head
print(____)

# Print DataFrame info
print(____)
Code bearbeiten und ausführen