Skip to content

Instantly share code, notes, and snippets.

@qtangs
Last active December 8, 2018 09:26
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 qtangs/58c391e72272a913ee2451f90ff29c8d to your computer and use it in GitHub Desktop.
Save qtangs/58c391e72272a913ee2451f90ff29c8d to your computer and use it in GitHub Desktop.
import numpy as np
import pandas as pd
def handler(event, context):
dates = pd.date_range('20181201', periods=6)
df = pd.DataFrame(np.random.randn(6, 4), index=dates, columns=list('ABCD'))
print(df)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment