I tried importing the financial data and use the following code. It runs fine but plotly just show blank canvas. I narrowed down and found out that the problem is cufflink because iplot alone (not using with dataframe still work fine) enter image description here
JavaScript
x
42
42
1
import pandas as pd
2
import numpy as np
3
import datetime
4
%matplotlib inline
5
import matplotlib.pyplot as plt
6
import seaborn as sns
7
sns.set_style('whitegrid')
8
%matplotlib inline
9
10
start = datetime.datetime(2006, 1, 1)
11
end = datetime.datetime(2016, 1, 1)
12
# Bank of America
13
BAC = data.DataReader("BAC", 'yahoo', start, end)
14
15
# CitiGroup
16
C = data.DataReader("C", 'yahoo', start, end)
17
18
# Goldman Sachs
19
GS = data.DataReader("GS", 'yahoo', start, end)
20
21
# JPMorgan Chase
22
JPM = data.DataReader("JPM", 'yahoo', start, end)
23
24
# Morgan Stanley
25
MS = data.DataReader("MS", 'yahoo', start, end)
26
27
# Wells Fargo
28
WFC = data.DataReader("WFC", 'yahoo', start, end)
29
30
df = data.DataReader(['BAC', 'C', 'GS', 'JPM', 'MS', 'WFC'],'yahoo', start, end)
31
32
tickers = ['BAC', 'C', 'GS', 'JPM', 'MS', 'WFC']
33
34
bank_stocks = pd.concat([BAC, C, GS, JPM, MS, WFC],axis=1,keys=tickers)
35
36
# Optional Plotly Method Imports
37
import plotly
38
import cufflinks as cf
39
cf.go_offline()
40
41
bank_stocks.xs(key='Close',axis=1,level='Stock Info').iplot()
42
Advertisement
Answer
I think the graph did not show up because the name of the multi-index was missing. Please add the following code before the code to draw the graph.
JavaScript
1
2
1
bank_stocks.columns.names = ['Bank Ticker','Stock Info']
2
Also, it is possible to add the following code as the cause of the missing display. This function needs to be called before executing iplot().See also this.
JavaScript
1
15
15
1
def enable_plotly_in_cell():
2
import IPython
3
from plotly.offline import init_notebook_mode
4
display(IPython.core.display.HTML('''
5
<script src="/static/components/requirejs/require.js"></script>
6
'''))
7
init_notebook_mode( connected=False )
8
9
import plotly
10
import cufflinks as cf
11
cf.go_offline()
12
enable_plotly_in_cell()
13
14
bank_stocks.xs(key='Close', axis=1, level='Stock Info').iplot()
15