web-dev-qa-db-ja.com

pyqtにmatplotlibを埋め込む方法-ダミー用

現在、私が設計したpyqt4ユーザーインターフェイスにプロットしたいグラフを埋め込みます。私はプログラミングがほとんどまったく新しいので、私が見つけた例に人々がどのように埋め込んだのかわかりません- この1つ(下部) および その1つ

誰かがステップバイステップの説明を投稿したり、少なくとも非常に小さな非常にシンプルなコードを投稿したりすることができれば素晴らしいでしょう。 1つのpyqt4 GUIのグラフとボタン。

69
ari

実際にはそれほど複雑ではありません。関連するQtウィジェットは matplotlib.backends.backend_qt4agg にあります。 FigureCanvasQTAggNavigationToolbar2QTは通常、必要なものです。これらは通常のQtウィジェットです。それらを他のウィジェットとして扱います。以下は、FigureNavigation、およびいくつかのランダムデータを描画する単一のボタンを使用した非常に単純な例です。物事を説明するコメントを追加しました。

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 __== '__main__':
    app = QtGui.QApplication(sys.argv)

    main = Window()
    main.show()

    sys.exit(app.exec_())

編集

コメントとAPIの変更を反映するように更新されました。

  • NavigationToolbar2QTAggNavigationToolbar2QTで変更されました
  • Figureの代わりにpyplotを直接インポートします
  • 非推奨のax.hold(False)ax.clear()に置き換えます
101
Avaris

以下は、PyQt5およびMatplotlib 2.の下で使用するための以前のコードの適応です。いくつかの小さな変更があります:PyQtサブモジュールの構造、matplotlibの他のサブモジュール、廃止されたメソッドが置き換えられました...


import sys
from PyQt5.QtWidgets import QDialog, QApplication, QPushButton, QVBoxLayout

from matplotlib.backends.backend_qt5agg import FigureCanvasQTAgg as FigureCanvas
from matplotlib.backends.backend_qt5agg import NavigationToolbar2QT as NavigationToolbar
import matplotlib.pyplot as plt

import random

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

        # a figure instance to plot on
        self.figure = plt.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 = QPushButton('Plot')
        self.button.clicked.connect(self.plot)

        # set the layout
        layout = 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)]

        # instead of ax.hold(False)
        self.figure.clear()

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

        # discards the old graph
        # ax.hold(False) # deprecated, see above

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

        # refresh canvas
        self.canvas.draw()

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

    main = Window()
    main.show()

    sys.exit(app.exec_())
55
Anabar