-1
私はデータフレームの配列を持っています:myArr=[df1,df2,df3]
これらのデータフレームのそれぞれには、ループでプロットしたい3つの列があります。パンダでデータフレームの配列を繰り返し、列の値をプロットする
colName = ['name1','name2','name3']
df_collection = [df1,df2,df3]
traces =[]
for x in range(2):
traces.append(
go.Scatter(
x=df_collection[x],
y=df_collection[x][colName[x]],
)
)
fig = go.Figure(data=traces, layout=layout)
py.offline.iplot(fig)
私は
TypeError: Object of type 'DataFrame' is not JSON serializable
'plotly'はjson-serializableオブジェクトが必要です。 'data.to_dict()'を試してください。 –