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

Features from dates

Another feature engineering task to perform is month and year extraction. Perform this task on the date column of the ufo dataset.

Bu egzersiz

Preprocessing for Machine Learning in Python

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

Egzersiz talimatları

  • Print out the .head() of the date column.
  • Retrieve the month attribute of the date column.
  • Retrieve the year attribute of the date column.
  • Take a look at the .head() of the date, month, and year columns.

Uygulamalı interaktif egzersiz

Bu örnek kodu tamamlayarak bu egzersizi bitirin.

# Look at the first 5 rows of the date column
print(____)

# Extract the month from the date column
ufo["month"] = ufo["date"].____

# Extract the year from the date column
ufo["year"] = ufo["date"].____

# Take a look at the head of all three columns
print(____)
Kodu Düzenle ve Çalıştır