MulaiMulai sekarang secara gratis

Filtering data by column with csvkit

Let's get some hands-on practice for filtering data column using the csvkit command csvcut. Remember that we can filter columns by referring to the position of the column (e.g. 1st column, 2nd column) or by referring to the exact name of the column as it appears in the data file.

Latihan ini adalah bagian dari kursus

Data Processing in Shell

Lihat Kursus

Latihan interaktif praktis

Cobalah latihan ini dengan menyelesaikan kode contoh berikut.

# Print a list of column headers in the data 
csvcut -n Spotify_MusicAttributes.csv

# Print the first column, by position
csvcut -c ___ Spotify_MusicAttributes.csv
Edit dan Jalankan Kode