Created
November 1, 2019 16:14
-
-
Save dgadiraju/b6af6fd3f14f2a3e01ef18ca38b45ea8 to your computer and use it in GitHub Desktop.
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
orders_path = "/Users/itversity/Research/data/retail_db/orders/part-00000" | |
orders_schema = [ | |
"order_id", | |
"order_date", | |
"order_customer_id", | |
"order_status" | |
] | |
orders = pd.read_csv(orders_path, | |
header=None, | |
names=orders_schema | |
) | |
type(orders) | |
# Preview Data Frame | |
orders |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment