Get startedGet started for free

Date and Time

You will now convert the timestamp column of the previously gathered data into a datetime object.

Since the timestamp gathered is in Epoch time, pandas provides a simple and useful method to convert this for us.

The data is loaded as df.

This exercise is part of the course

Analyzing IoT Data in Python

View Course

Hands-on interactive exercise

Have a go at this exercise by completing this sample code.

# Convert the timestamp
____ = ____

# Print datatypes and first observations
print(df.dtypes)
print(df.head())
Edit and Run Code