**
Python3 matplotlib绘图时,坐标轴刻度不从X轴、y轴两端开始。
**
这样输出的图片真的不太好看,请问有什么方法可以避免吗?(已经查询了百度,没有发现这各个问题的提问和解决方法)
import csv
from datetime import datetime
from matplotlib import pyplot as plt
#从文件中获取日期、气温
filename='death_valley_2014.csv'
with open(filename) as f:
reader = csv.reader(f)
header_row = next(reader)
'''for index,column_header in enumerate(header_row):
print(index,column_header)'''
dates, highs, lows=[], [], []
for row in reader:
try:
current_date=datetime.strptime(row[0],"%Y-%m-%d")
high=int(row[1])
low=int(row[3])
except ValueError:
print(current_date, 'missing data')
else:
dates.append(current_date)
highs.append(high)
lows.append(low)
# 根据数据绘制图形
fig = plt.figure(dpi=128, figsize= (10,6))
plt.plot(dates, highs, c='red')
plt.plot(dates, lows, c='blue')
plt.fill_between(dates, highs, lows, facecolor='blue', alpha=0.1)
# 设置图形的格式
plt.title("Daily high and low temperatures-2014", fontsize=24)
plt.xlabel('', fontsize=16)
fig.autofmt_xdate()
plt.ylabel('Temperatur(F)',fontsize = 16)
plt.tick_params(axis= 'both', which= 'major',labelsize= 16)
plt.show()
最后输出的结果如下,可以看到,无论是x轴还是y轴,刻度线均未从轴起始端开始出现,也不在轴末端出现。