問題タブ [matplotlib-widget]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
python - 特定の Figure に Figure オブジェクトをプロットする
タイプのブラックボックスからのオブジェクトがあります:
<matplotlib.axes._axes.Axes object at 0x7fedbe19c1d0>
私のpyqt5 GUIで、matplotlibwidgetにプロットしたいと思います。
問題は次のとおりです。オブジェクトを特定の図にプロットする方法は?
私はこれを試しました:
myObject = blackBox()
myObject_figure = myObject.get_figure()
myObject_figure.show()
ここで、<matplotlib.figure.Figure>
オブジェクトを新しい図にプロットできますが、特定の図にプロットしたいと思います...