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
date | value | |
---|---|---|
11/1/15 | 300 | |
12/1/15 | 378.375 | |
1/1/16 | 333.7916667 | |
2/1/16 | 330.7696078 | |
3/1/16 | 347.2945545 | |
4/1/16 | 363.2814465 | |
5/1/16 | 323.4774096 | |
6/1/16 | 288.9470878 | |
7/1/16 | 284.7981057 |
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
date | value | |
---|---|---|
9/1/85 | 1 | |
1/1/89 | 3 | |
2/1/90 | 1 | |
1/1/91 | 1 | |
1/1/92 | 1 | |
2/1/92 | 1 | |
4/1/92 | 1 | |
5/1/92 | 1 | |
11/1/92 | 1 |
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
name | value | |
---|---|---|
A | .08167 | |
B | .01492 | |
C | .02782 | |
D | .04253 | |
E | .12702 | |
F | .02288 | |
G | .02015 | |
H | .06094 | |
I | .06966 |
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
date | accessories | sneakers | |
---|---|---|---|
10/1/17 | 1.896627168 | 1.838794332 | |
11/1/17 | 1.94401401 | 1.739707228 | |
12/1/17 | 1.921166761 | 1.824052705 | |
1/1/18 | 1.99704023 | 2.06511041 | |
2/1/18 | 2.04277584 | 2.003361492 | |
3/1/18 | 1.845112974 | 1.62430097 | |
4/1/18 | 1.737910393 | 1.55535178 | |
5/1/18 | 1.677839147 | 1.626807553 | |
6/1/18 | 1.552204215 | 1.429075154 |
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
sale_date | sale_price | |
---|---|---|
2018-12-03 | 4.5552375918112222 | |
2018-12-10 | 3.9042580316765445 | |
2018-12-17 | 3.7101137715418639 | |
2018-12-24 | 3.7901464902186421 | |
2018-12-31 | 3.7484495324438365 | |
2019-01-07 | 3.7578998312236287 | |
2019-01-14 | 3.8196466413502108 | |
2019-01-21 | 3.7853349909584084 | |
2019-01-28 | 3.7413680917124434 |
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
sneaker_name | sneaker_id | count_wears | brand | wears_group | |
---|---|---|---|---|---|
UltraBoost V4 White | 1 | 3 | Adidas | medium | |
Boost 350 V2 White | 2 | 1 | Adidas | low | |
Bball Low (Old) White | 3 | 1 | Common Projects | low | |
Bball Low Nude | 4 | 5 | Common Projects | high | |
Bball Low White | 5 | 7 | Common Projects | high | |
Bball Low Gray | 6 | 7 | Common Projects | high | |
Bball Low Taupe Suede | 7 | 8 | Common Projects | high | |
React Element 87 Brown | 9 | 1 | Nike | low | |
Blazer Low Pink | 10 | 1 | Nike | low |
We can make this file beautiful and searchable if this error is corrected: It looks like row 5 should actually have 32 columns, instead of 26 in line 4.
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
sale_date,Zoom Fly Mercurial (Total Orange),Zoom Fly Mercurial (Black),Zoom Fly (Tulip Pink),Zoom Fly (The Ten),Zoom Fly (Black),React Hyperdunk (The Ten),Jordan 1 High (White),Jordan 1 High (University Blue),Jordan 1 High (Chicago),Converse Chuck Taylor Hi (The Ten),Converse Chuck Taylor 70s Hi,Blazer Mid (The Ten),Blazer Mid (Serena Pack),Blazer Mid (Grim Reaper),Blazer Mid (All Hallow's Eve),Air VaporMax (The Ten),Air VaporMax (Black),Air Presto (White),Air Presto (The Ten),Air Presto (Black),Air Max 97 (The Ten),Air Max 97 (Serena Pack),Air Max 97 (Menta),Air Max 97 (Black),Air Max 90 (The Ten),Air Max 90 (Desert Ore),Air Max 90 (Black),AF1 Low (Volt),AF1 Low (The Ten),AF1 Low (ComplexCon),AF1 Low (Black) | |
2017-08-20 00:00:00,,,,,,,,,1800,,,,,,,,,,,,,,,,,,,,,, | |
2017-08-27 00:00:00,,,,,,,,,2100,,,,,,,,,,,,,,,,,,,,,, | |
2017-09-10 00:00:00,,,,,,,,,2547.666667,,,811.2903226,,,,1498.235294,,,1313.046512,,,,,,1005.055556,,,,,, | |
2017-09-17 00:00:00,,,,,,,,,2040.114286,,,676.4583333,,,,1121.761194,,,1212.152542,,,,,,8 |
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
from airflow import DAG | |
from airflow.operators import PythonOperator | |
from datetime import datetime | |
dag = DAG( | |
dag_id = 'my_first_dag', | |
start_date = datetime(2019,1,15), | |
schedule_interval = '0 2 * * *') | |
def print_hello(): |
NewerOlder