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

Missing data

In this exercise, let's examine missing values. When working with data, you will inevitably come across missing values. These can occur for a number of reasons - they could be intentionally missing, or they could have been left out accidentally. Either way, identifying missing values is critical to understand before making any changes or drawing any insight from your data.

In this example you will first show the missing values in each column of the data, and you will then drop missing values from a column. Sample data has been loaded for you into the DataFrame sales_df.

Bu egzersiz

Intermediate Julia

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

Uygulamalı interaktif egzersiz

Bu örnek kodu tamamlayarak bu egzersizi bitirin.

# Describe the DataFrame to find columns with missing values
println(____(____))

# Count the number of rows in the DataFrame
println(____(____))
Kodu Düzenle ve Çalıştır