本文主要是介绍python科研做图系列之时序图的绘制——对比折线图,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
参考知乎
折线图
我需要从两个不同的excel都读取第一列作为时间列,第二列作为编码列。
在同一张图上画出两条时间序列的折线图
横坐标是分钟,纵坐标是编码
帮我画的好看一些,记得解决中文乱码问题
英文版折线图
,先搞个英文版,导师要求中文的话,再换成中文版
import pandas as pd
import matplotlib.pyplot as plt# Reading the Excel files
file1 = 'merged_output.xlsx'
file2 = 'mAI.xlsx'# Assuming the sheets are named "Sheet1" in both files
df1 = pd.read_excel(file1, sheet_name='Sheet1')
df2 = pd.read_excel(file2, sheet_name='Sheet1')# Extracting the first and second columns as time and code
code1,time1 = df1.iloc[:, 0], df1.iloc[:, 1]
code2,time2 = df2.iloc[:, 0], df2.iloc[:, 1]# Plotting the time series
plt.figure(figsize
这篇关于python科研做图系列之时序图的绘制——对比折线图的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!