X轴标签未显示在该图python中

时间:2019-06-25 23:10:46

标签: python plot

我正在尝试在python中绘制一些时间序列数据。当它们可视化时,这就是我的图形的显示方式。

enter image description here

在上图中,“ x轴”值未显示。我需要它们在图中显示。

data = pd.read_csv("Temporary_Dataset/data.csv") 
data.set_index(data.ds, inplace=True)

# scatter the sepal_length against the sepal_width
data.plot(x='ds',y='y',figsize=(15, 6))

这是数据框的外观

enter image description here

我需要显示x轴的“ ds”列值。请有人帮助

0 个答案:

没有答案