In [2]:
import pandas as pd
In [9]:
import sys
sys.path.append('/mnt/labshare/Programs/python/HelperFunctions/')
# from myfunctions import *
from plottingFunctions import *
from plotlylayouts import *
init_notebook_mode()
In [5]:
sheet_id = '1O4NR4HSkZZZsNd2MxmtNVzHAhk-xgLCIpj4eEK9p60o'
In [7]:
test = pd.read_csv('https://docs.google.com/spreadsheets/d/' +
sheet_id +
'/export?gid=0&format=csv',
index_col=0)
test.head()
Out[7]:
In [24]:
layout, trace = LinePlot('test', x=test['F1'], y=test['T1'])
layout, trace2 = LinePlot('test', x=test['F2'], y=test['T1.1'])
iplot(Figure(data=[trace, trace2], layout=layout))
In [ ]: