1. ホーム
  2. python

[解決済み] pyqtにmatplotlibを埋め込む方法 - for Dummies

2023-06-16 16:27:16

質問

私は現在、私がデザインしたpyqt4のユーザーインターフェイスにプロットしたいグラフを埋め込もうとしています。私はプログラミングがほとんど初めてなので、私が見つけた例の中で人々がどのように埋め込んでいるのかがわかりません。 この1つ(一番下にある) あれ .

誰かがステップバイステップの説明、または少なくとも非常に小さな、非常に単純なコードを1つのpyqt4 GUIで例えばグラフとボタンを作成するだけで投稿できれば素晴らしいことです。

どのように解決するのですか?

実はそれほど複雑ではありません。関連するQtウィジェットは matplotlib.backends.backend_qt4agg . FigureCanvasQTAgg そして NavigationToolbar2QT は、通常必要なものです。これらは、通常のQtウィジェットです。他のウィジェットと同じように扱えます。以下は、非常にシンプルな例で Figure , Navigation と、ランダムなデータを描画するボタンが1つあります。説明のためにコメントをつけています。

import sys
from PyQt4 import QtGui

from matplotlib.backends.backend_qt4agg import FigureCanvasQTAgg as FigureCanvas
from matplotlib.backends.backend_qt4agg import NavigationToolbar2QT as NavigationToolbar
from matplotlib.figure import Figure

import random

class Window(QtGui.QDialog):
    def __init__(self, parent=None):
        super(Window, self).__init__(parent)

        # a figure instance to plot on
        self.figure = Figure()

        # this is the Canvas Widget that displays the `figure`
        # it takes the `figure` instance as a parameter to __init__
        self.canvas = FigureCanvas(self.figure)

        # this is the Navigation widget
        # it takes the Canvas widget and a parent
        self.toolbar = NavigationToolbar(self.canvas, self)

        # Just some button connected to `plot` method
        self.button = QtGui.QPushButton('Plot')
        self.button.clicked.connect(self.plot)

        # set the layout
        layout = QtGui.QVBoxLayout()
        layout.addWidget(self.toolbar)
        layout.addWidget(self.canvas)
        layout.addWidget(self.button)
        self.setLayout(layout)

    def plot(self):
        ''' plot some random stuff '''
        # random data
        data = [random.random() for i in range(10)]

        # create an axis
        ax = self.figure.add_subplot(111)

        # discards the old graph
        ax.clear()

        # plot data
        ax.plot(data, '*-')

        # refresh canvas
        self.canvas.draw()

if __name__ == '__main__':
    app = QtGui.QApplication(sys.argv)

    main = Window()
    main.show()

    sys.exit(app.exec_())

編集 :

コメントとAPIの変更を反映し、更新しました。

  • NavigationToolbar2QTAgg で変更 NavigationToolbar2QT
  • 直接インポートする Figure の代わりに pyplot
  • 非推奨の置き換え ax.hold(False)ax.clear()