我有一个csv / excel文件,其中包含文档ID及其对应的日期时间列。尝试了以下方法:
\s*
但是我无法获得所需的输出,而是显示以下错误:
import matplotlib
import matplotlib.pyplot as plt
import numpy as np
import datetime
import pandas as pd
xls_data = pd.read_excel(<file-path>)
x1 = xls_data["client_doc_id"].values #id column in the file
y1 = xls_data["planned_finish_ifd"].values #one of the date-time column in the file
plt.plot(x1,y1)
plt.gcf().autofmt_xdate()
plt.show()
如何绘制一个日期时间列,如何在一个图形中绘制多个日期时间列?