Skip to content

Instantly share code, notes, and snippets.

@dgadiraju
Last active November 1, 2019 16:11
Show Gist options
  • Save dgadiraju/7c12ab7da787e2dfd70195183eaeb2b6 to your computer and use it in GitHub Desktop.
Save dgadiraju/7c12ab7da787e2dfd70195183eaeb2b6 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
)
order_dates = orders.order_date
type(order_dates)
# Preview Series
order_dates
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment