读取excel表,将首行为‘speed1’与‘touque1’的一列提取出来并进行绘图,x轴为‘speed’,y轴为‘torque1’,
时间: 2023-07-24 22:04:07 浏览: 70
读取excel文件,并进行绘图
3星 · 编辑精心推荐
你可以使用Python中的Pandas和Matplotlib库来实现这个任务。首先,你需要安装这两个库:
```
!pip install pandas matplotlib
```
接下来,你需要使用Pandas库读取Excel表格并提取需要的数据:
```python
import pandas as pd
# 读取Excel表格
df = pd.read_excel("file.xlsx")
# 提取speed1和touque1列
df = df[['speed1', 'torque1']]
```
接下来,你可以使用Matplotlib库来绘制图表:
```python
import matplotlib.pyplot as plt
# 绘制图表
plt.plot(df['speed1'], df['torque1'])
plt.xlabel('speed')
plt.ylabel('torque1')
plt.show()
```
这样就可以把首行为‘speed1’与‘touque1’的一列提取出来并进行绘图,x轴为‘speed’,y轴为‘torque1’了。
阅读全文