Stacking files with csvkit
SpotifyData_PopularityRank6.csv and SpotifyData_PopularityRank7.csv have the same file format, column order, and overall data schema. However, one file contains information for songs ranked #6, and the other contains information for songs ranked #7. Combine the two files together into one unified file by stacking them.
Diese Übung ist Teil des Kurses
Data Processing in Shell
Anleitung zur Übung
- Stack
SpotifyData_PopularityRank6.csvandSpotifyData_PopularityRank7.csvtogether. Re-direct the output of this stacking and save as a new file calledSpotifyPopularity.csv.
Interaktive Übung
Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.
# Stack the two files and save results as a new file
___ SpotifyData_PopularityRank6.csv SpotifyData_PopularityRank7.csv ___ SpotifyPopularity.csv
# Preview the newly created file
csvlook SpotifyPopularity.csv