Data exploration with awk
Help 4 / 12
Filtering data

Exercise

Create a tab-separated file called large_orders.tsv that contains all the lines from the file orders.tsv where someone ordered the same item 5 times or more (note that column 2 contains the item count).

Exercise Criteria:
0 / 2
  • File large_orders.tsv exists
  • File large_orders.tsv contains orders where the same item was ordered >= 5 times (print all columns; no need to skip the header line)
Loading...