gpt4 book ai didi

python - 如何使用 Figure(matplotlib FigureCanvasQTAgg) 绘制具有多个 yaxis 的共享 xaxis 子图?

转载 作者:太空宇宙 更新时间:2023-11-04 04:36:27 26 4
gpt4 key购买 nike

我想绘制一个共享 xaxis 但垂直层中不同 yaxis 的图形,如下图所示。

accepted output

I have tried this

import sys
import matplotlib
matplotlib.use("Qt5Agg")
from PyQt5 import QtCore
from PyQt5.QtWidgets import QApplication, QMainWindow, QMenu, QVBoxLayout, QSizePolicy, QMessageBox, QWidget
from matplotlib.backends.backend_qt5agg import FigureCanvasQTAgg as FigureCanvas
from matplotlib.figure import Figure
from matplotlib.dates import num2date, date2num
import datetime

class GraphCanvas(FigureCanvas):
def __init__(self, parent=None, width=1, height=1, dpi=100):
fig = Figure(figsize=(width, height), dpi=dpi,facecolor='#041105') #figure options
#first subplot
self.axes = fig.add_subplot(211,facecolor='#041105')
self.axes.tick_params(axis='both',color='#ffffff',labelcolor ='#ffffff') #tick options
self.axes.grid(color='lightgray', linewidth=.5, linestyle=':')
self.axes.yaxis.tick_right() # show yaxis tick text in right side
self.axes.xaxis_date()
#second subplot
self.axes2 = fig.add_subplot(212,facecolor='#041105')
self.axes2.tick_params(axis='both', color='#ffffff', labelcolor='#ffffff') # tick options
self.axes2.grid(color='lightgray', linewidth=.5, linestyle=':')
self.axes2.yaxis.tick_right() # show yaxis tick text in right side
self.axes2.xaxis_date()

# ploting all trace
self.plot_traces()
FigureCanvas.__init__(self, fig)
self.setParent(parent)
FigureCanvas.setSizePolicy(self,
QSizePolicy.Expanding,
QSizePolicy.Expanding)
FigureCanvas.updateGeometry(self)
class GraphTraces(GraphCanvas):
"""Simple canvas with a sine plot."""
def plot_traces(self):
dates = ['2017/01/01', '2017/01/02', '2017/01/03', '2017/01/04', '2017/01/05','2017/01/06','2017/01/07']
x = date2num([datetime.datetime.strptime(d, '%Y/%m/%d').date() for d in dates])
#scatter line chart
y1 = [2,5,4,7,6,5,4]
self.axes.plot(x, y1,color='orange')
#bar chart
y2 = [2,5,4,7,6,5,4]
self.axes2.bar(x, y2,width=.8,color='g')

class ApplicationWindow(QMainWindow):
def __init__(self):
QMainWindow.__init__(self)
self.setAttribute(QtCore.Qt.WA_DeleteOnClose)
self.setWindowTitle("application main window")
self.file_menu = QMenu('&File', self)
self.file_menu.addAction('&Quit', self.fileQuit,
QtCore.Qt.CTRL + QtCore.Qt.Key_Q)
self.menuBar().addMenu(self.file_menu)
self.help_menu = QMenu('&Help', self)
self.menuBar().addSeparator()
self.menuBar().addMenu(self.help_menu)

self.help_menu.addAction('&About', self.about)
# plot widget
self.plot_widget = QWidget(self)
layout = QVBoxLayout(self.plot_widget)
graph = GraphTraces(self.plot_widget, width=10, height=8, dpi=100)
layout.addWidget(graph)
self.plot_widget.setFocus()
self.setCentralWidget(self.plot_widget)

self.statusBar().showMessage("Status!", 2000)

def fileQuit(self):
self.close()
def closeEvent(self, ce):
self.fileQuit()
def about(self):
QMessageBox.about(self, "About",
)

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

aw = ApplicationWindow()
aw.setWindowTitle("Matplot in PyQt5 in main window")
aw.show()
app.exec_()

获取输出

Output image[注意] 当我使用 twinx 时,子图相互重叠并且 pyplot sharexPyQt5 主窗口上不工作 FigureCanvas

而且我还尝试关注 this回答但无法在 PyQt5 主窗口 中绘制此图。

最佳答案

您需要在子图之间共享 x 轴。

  • 您可以使用 sharex 参数来这样做

    ax1 = fig.add_subplot(211)
    ax2 = fig.add_subplot(212, sharex=ax1)
  • 或者,更方便的方法是使用subplots

    ax1, ax2 = fig.subplots(nrows=2, sharex=True)

关于python - 如何使用 Figure(matplotlib FigureCanvasQTAgg) 绘制具有多个 yaxis 的共享 xaxis 子图?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51588514/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com