-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
25 additions
and
1 deletion.
There are no files selected for viewing
Submodule ws3
deleted from
720753
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
394 ls | ||
395 ls taxidata | ||
396 cut -d ',' -f 8 taxidata/2019-01.csv > jan.txt | ||
400 sort -n jan.txt > sortedjan.txt | ||
402 uniq -c sortedjan.txt > ws3.txt | ||
404 vim ws3.txt | ||
405 cat ws3.txt | ||
406 cut -d ',' -f 8 taxidata/2019-02.csv > feb.txt | ||
408 sort -n feb.txt > sortedfeb.txt | ||
409 ls | ||
410 uniq -c sortedfeb.txt >> ws3.txt | ||
411 vim ws3.txt | ||
412 cat ws3.txt | ||
413 history > cmds.log |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
Top 3 pick up location ID in Jan 2019 | ||
|
||
312392 161.0 | ||
323008 236.0 | ||
332473 237.0 | ||
|
||
Top 3 pick up location ID in Feb 2019 | ||
|
||
286773 161.0 | ||
280640 236.0 | ||
294584 237.0 |