JuliaPy / JuliaPy/PythonPlot.jl
How can I use gridspec?
- 主要言語
- Julia
- スター
- 85
- フォーク
- 9
- PR マージ指標
- 30日以内にマージされた PR はありません
説明
Could anyone show me how to use gridspec?
```jl
fig = figure();
gs = fig.add_gridspec(2,2);
ax1 = fig.add_subplot(gs[0,0]); # this works
ax2 = fig.add_subplot(gs[1,0:1]); #This does not work
```
I get the following error:
```jl
ERROR: Python: TypeError: '<' not supported between instances of 'range' and 'int'
```
コントリビューションガイド
このリポジトリのコントリビューションガイドは索引されていません
調査の方向性
Start by reproducing the shown `fig.add_gridspec` and `fig.add_subplot` calls, especially the `gs[1,0:1]` expression, and inspect how these entry points handle Julia indexing before the Python call. Done means determining whether the usage is supported and documenting or correcting the behavior with a regression test.
索引モデルが issue の本文から書いたものです。
評価
- 技術スタック
- matplotlib
- 領域
- data-visualization
- issue の種類
- バグ
- 難易度
- 4/5
- 見積もり時間
- 3〜5日
- 活発さ
- 停滞
- 明瞭さ
- 説明が足りない
- 初心者へのやさしさ
- 25/100