BaşlayınÜcretsiz Başlayın

Missing data

Let's now explore different methods to handle missing data.

It's important to know different methods to deal with missing data, since you are not always allowed to drop observations from the dataset.

The dataset data and pandas as pd are available in your session.

Bu egzersiz

Analyzing IoT Data in Python

kursunun bir parçasıdır
Kursu Görüntüle

Uygulamalı interaktif egzersiz

Bu örnek kodu tamamlayarak bu egzersizi bitirin.

# Print head of the DataFrame
print(data.head())

# Drop missing rows
data_clean = ____
____
Kodu Düzenle ve Çalıştır