我希望学习如何将Plotly与Python结合使用以进行数据分析。 我一直在使用this website作为参考。
我当前的代码如下:
from plotly import tools
import plotly as py
import plotly.graph_objs as go
py.offline.init_notebook_mode(connected=True)
# Create linear regression object
regr = linear_model.LinearRegression()
# Train the model using the training sets
regr.fit(X_train, y_train)
p1 = go.Scatter(x=X_test,
y=y_test,
mode='markers',
marker=dict(color='black')
)
p2 = go.Scatter(x=X_test,
y=regr.predict(X_test),
mode='lines',
line=dict(color='blue', width=3)
)
layout = go.Layout(xaxis=dict(ticks='', showticklabels=False,
zeroline=False),
yaxis=dict(ticks='', showticklabels=False,
zeroline=False),
showlegend=False, hovermode='closest')
fig = go.Figure(data=[p1, p2], layout=layout)
py.offline.iplot(fig)
但是,我的输出看起来像
如果我要逐行关注网站,我会得到的:
from plotly import tools
import plotly as py
import plotly.graph_objs as go
py.offline.init_notebook_mode(connected=True)
# Create linear regression object
regr = linear_model.LinearRegression()
# Train the model using the training sets
regr.fit(X_train, y_train)
def data_to_plotly(x):
k = []
for i in range(0, len(x)):
k.append(x[i][0])
return k
p1 = go.Scatter(x=data_to_plotly(X_test),
y=y_test,
mode='markers',
marker=dict(color='black')
)
p2 = go.Scatter(x=data_to_plotly(X_test),
y=regr.predict(X_test),
mode='lines',
line=dict(color='blue', width=3)
)
layout = go.Layout(xaxis=dict(ticks='', showticklabels=False,
zeroline=False),
yaxis=dict(ticks='', showticklabels=False,
zeroline=False),
showlegend=False, hovermode='closest')
fig = go.Figure(data=[p1, p2], layout=layout)
py.offline.iplot(fig)
但是它会产生以下错误:
---------------------------------------------------------------------------
KeyError Traceback (most recent call last)
~\Anaconda3\lib\site-packages\pandas\core\indexes\base.py in get_loc(self, key, method, tolerance)
2656 try:
-> 2657 return self._engine.get_loc(key)
2658 except KeyError:
pandas/_libs/index.pyx in pandas._libs.index.IndexEngine.get_loc()
pandas/_libs/index.pyx in pandas._libs.index.IndexEngine.get_loc()
pandas/_libs/hashtable_class_helper.pxi in pandas._libs.hashtable.PyObjectHashTable.get_item()
pandas/_libs/hashtable_class_helper.pxi in pandas._libs.hashtable.PyObjectHashTable.get_item()
KeyError: 0
During handling of the above exception, another exception occurred:
KeyError Traceback (most recent call last)
<ipython-input-84-5895927e91e2> in <module>
21 return k
22
---> 23 p1 = go.Scatter(x=data_to_plotly(X_test),
24 y=y_test,
25 mode='markers',
<ipython-input-84-5895927e91e2> in data_to_plotly(x)
17
18 for i in range(0, len(x)):
---> 19 k.append(x[i][0])
20
21 return k
~\Anaconda3\lib\site-packages\pandas\core\frame.py in __getitem__(self, key)
2925 if self.columns.nlevels > 1:
2926 return self._getitem_multilevel(key)
-> 2927 indexer = self.columns.get_loc(key)
2928 if is_integer(indexer):
2929 indexer = [indexer]
~\Anaconda3\lib\site-packages\pandas\core\indexes\base.py in get_loc(self, key, method, tolerance)
2657 return self._engine.get_loc(key)
2658 except KeyError:
-> 2659 return self._engine.get_loc(self._maybe_cast_indexer(key))
2660 indexer = self.get_indexer([key], method=method, tolerance=tolerance)
2661 if indexer.ndim > 1 or indexer.size > 1:
pandas/_libs/index.pyx in pandas._libs.index.IndexEngine.get_loc()
pandas/_libs/index.pyx in pandas._libs.index.IndexEngine.get_loc()
pandas/_libs/hashtable_class_helper.pxi in pandas._libs.hashtable.PyObjectHashTable.get_item()
pandas/_libs/hashtable_class_helper.pxi in pandas._libs.hashtable.PyObjectHashTable.get_item()
KeyError: 0
我是Plotly的新手。我该如何解决?
编辑: 我的X_test看起来像这样:
答案 0 :(得分:2)
我看到X_train
是一个数据帧,Plotly实际上对熊猫很友好,plotly的pandas example gallery中有几个示例,因此您不必在{{1 }}(可悲的是,该教程看起来已经过时了)。在这种情况下,散布应该看起来像
data_to_plotly