Skip to content

Instantly share code, notes, and snippets.

@infinite-Joy
Last active August 5, 2017 05:52
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 infinite-Joy/12cf38cd8baca71c89f8ce370055d4bd to your computer and use it in GitHub Desktop.
Save infinite-Joy/12cf38cd8baca71c89f8ce370055d4bd to your computer and use it in GitHub Desktop.
import numpy as np
from bokeh.charts import output_file, show, Line
from bokeh.charts import Area, show, TimeSeries
from bokeh.io import output_notebook
X1 = df_hitech.loc[0:5, ['Date', 'Open', 'Total Trade Quantity']].values
X2 = df_bhagyanar.loc[0:5,['Date', 'Open', 'Total Trade Quantity']].values
X3 = df_hudco.loc[0:5, ['Date', 'Open', 'Total Trade Quantity']].values
# Get a feel for the data.
print([x for x in X1])
print([x for x in X2])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment