在pyqt5中使用matplotlib画条形图
时间: 2023-06-12 14:02:18 浏览: 116
【matplotlib绘图】别再用pyplot (plt) 画图了!因为他跟你一样:没 有 对 象!
好的,关于使用PyQt5和Matplotlib绘制条形图,你可以按照以下步骤:
1. 安装必要的库,如pyqt5和matplotlib:可以使用pip install pyqt5和pip install matplotlib来安装。
2. 在PyQt5中创建应用程序窗口,例如:
```
import sys
from PyQt5.QtWidgets import QApplication, QMainWindow
app = QApplication(sys.argv)
window = QMainWindow()
window.show()
sys.exit(app.exec_())
```
3. 在窗口中添加一个matplotlib画布,例如:
```
import matplotlib.pyplot as plt
from matplotlib.backends.backend_qt5agg import FigureCanvasQTAgg as FigureCanvas
class MyMainWindow(QMainWindow):
def __init__(self):
super().__init__()
...
# Create the matplotlib figure and canvas widgets
self.fig = plt.Figure()
self.canvas = FigureCanvas(self.fig)
self.setCentralWidget(self.canvas)
...
```
4. 绘制条形图:
```
class MyMainWindow(QMainWindow):
def __init__(self):
super().__init__()
...
# Define data for the bar chart
labels = ['Apples', 'Oranges', 'Bananas']
values = [5, 3, 4]
# Create the matplotlib figure and canvas widgets
self.fig = plt.Figure()
self.canvas = FigureCanvas(self.fig)
self.setCentralWidget(self.canvas)
# Add the bar chart to the Figure
ax = self.fig.add_subplot(111)
ax.bar(labels, values)
...
```
5. 最后,记得在窗口中调整和显示matplotlib画布:
```
class MyMainWindow(QMainWindow):
def __init__(self):
super().__init__()
...
# Create the matplotlib figure and canvas widgets
self.fig = plt.Figure()
self.canvas = FigureCanvas(self.fig)
self.setCentralWidget(self.canvas)
# Add the bar chart to the Figure
ax = self.fig.add_subplot(111)
ax.bar(labels, values)
# Adjust the matplotlib figure layout
self.fig.tight_layout()
# Show the window
self.show()
```
希望这能帮助你完成任务!
阅读全文