Bug in parallel_coordinates()
オープン
まだ誰も着手していません。
bug
P3
- 主要言語
- Python
- スター
- 18.8k
- フォーク
- 2.8k
- 平均マージ
- 16時間 26分
- マージ済み PR(30日)
- 21
説明
The last line fig.show(height=800) is not working despite the documentation saying it would.
import plotly.express as px
df = px.data.iris()
fig = px.parallel_coordinates(
df,
color="species_id",
dimensions=[
'sepal_width',
'sepal_length',
'petal_width',
'petal_length'
],
color_continuous_scale=px.colors.diverging.Tealrose,
color_continuous_midpoint=2
)
fig.show(height=800)
To remedy the issue, I had to replace the last line with these. It would be nice if the Plotly team can fix this minor bug.
...
fig.update_layout(height=800)
fig.show()
コントリビューションガイド
はじめの一歩
- issue を最後まで読み、次にプロジェクトのコントリビューションガイドを読みます。
- 着手することを issue にコメントします — 二人が同じ作業をするのを防げます。
- リポジトリをフォークし、ブランチを切って変更します。
- issue 番号を参照したプルリクエストを送ります。
調査の方向性
まず、提供されている parallel_coordinates() の例を実行し、fig.show(height=800) とドキュメントに記載された動作を比較します。Figure.show のエントリーポイントと height の処理を追跡します。ドキュメントに記載された呼び出しで、update_layout() を必要とせずに height 800 の Figure が生成されれば、issue は完了です。
索引モデルが issue の本文から書いたものです。
評価
- 技術スタック
- python
- 領域
- data-visualization
- issue の種類
- バグ
- 難易度
- 3/5
- 見積もり時間
- 1〜2日
- 活発さ
- 停滞
- 明瞭さ
- おおむね明確
- 初心者へのやさしさ
- 42/100