ComeçarComece de graça

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.

Este exercício faz parte do curso

Analyzing IoT Data in Python

Ver curso

Exercício interativo prático

Experimente este exercício completando este código de exemplo.

# Convert the timestamp
____ = ____

# Print datatypes and first observations
print(df.dtypes)
print(df.head())
Editar e executar o código