Skip to content

Instantly share code, notes, and snippets.

@dgadiraju
Created November 1, 2019 16:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dgadiraju/b6af6fd3f14f2a3e01ef18ca38b45ea8 to your computer and use it in GitHub Desktop.
Save dgadiraju/b6af6fd3f14f2a3e01ef18ca38b45ea8 to your computer and use it in GitHub Desktop.
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