0
Plotlyというデータ視覚化ツールを使って学びたいと思っています。そして、私はどのように詳細情報を得るためにいくつかのオブジェクトの属性にhelp()
を実行することができますか?Plotlyでこのオブジェクトの "help()"を呼び出す方法は?
plotly.graph_objs.graph_objs
モジュールの一部であるgo.Box
モジュールを使用してグラフを作成したいと考えていますが、go.Box
のオブジェクトと属性についてはあまり情報がありません。
質問私はhelp(go.Box)
を使用してみましたが、それが唯一の
Init signature: go.Box(self, *args, **kwargs)
Docstring:
Valid attributes for 'box' at path [] under parents():
['jitter', 'orientation', 'stream', 'ysrc', 'xsrc', 'visible', 'marker',
'y0', 'pointpos', 'line', 'uid', 'showlegend', 'boxmean', 'xaxis',
'type', 'opacity', 'legendgroup', 'fillcolor', 'hoverinfo', 'x0',
'whiskerwidth', 'name', 'yaxis', 'y', 'x', 'boxpoints']
Run `<box-object>.help('attribute')` on any of the above.
'<box-object>' is the object at []
File: c:\python27\lib\site-packages\plotly\graph_objs\graph_objs.py
Type: type
私に最小限の情報を与えている:どのように私はgo.Box
のname
属性に関する詳細情報を入手することができますか?上記の<box-object>.help('attribute')
はどのように実行できますか?
アイデア?