Skip to content

Instantly share code, notes, and snippets.

@hossein761
Last active May 30, 2018 11:49
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 hossein761/6b1e2a54dbe80d5a5e4ed23a34677dde to your computer and use it in GitHub Desktop.
Save hossein761/6b1e2a54dbe80d5a5e4ed23a34677dde to your computer and use it in GitHub Desktop.
Load csv data into pandas dataframes
# load data
candles_df = pd.read_csv('bitfinex_btcusd_1h.csv', header=0)
# show scatter matrix
scatter_matrix(candles_df[['open', 'close', 'low', 'high', 'volume']], alpha=0.2, figsize=(6, 6), diagonal='kde')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment