我正在尝试使用matplotlib生成热图。
import matplotlib.pyplot as plt
import numpy as np
import sys
import re
data = np.random.rand(10, 10)
heatmap = plt.pcolor(data)
with open(sys.argv[1],'r') as iFile:
for line in iFile:
line=line.strip()
values=re.split('[-:]',line)
x=values[0].strip()
y=values[1].strip()
z=values[2].strip()
data[y,x]=z
for y in range(data.shape[0]):
for x in range(data.shape[1]):
plt.text(x + 0.5, y + 0.5, '%.2f' % data[y, x],
horizontalalignment='center',
verticalalignment='center',)
plt.colorbar(heatmap)
plt.show()
,数据采用“x-y:value”格式,如下所示
6 - 4 : 0.180671274019055
6 - 1 : 0.30475569499109
6 - 3 : 0.276460025706412
6 - 2 : 0.298002584369681
...
...
1 - 4 : 0.0961071651182192
1 - 1 : 0.259655770346209
1 - 3 : 0.308485173534571
1 - 2 : 0.278724535194018
问题:x和y值非常动态,可以变化(此处为1到6)。我想根据输入文件动态设置轴。任何帮助将不胜感激,谢谢!
答案 0 :(得分:1)
Pyplot在其API中有xlim
和ylim
个函数。
http://matplotlib.org/api/pyplot_api.html#matplotlib.pyplot.xlim http://matplotlib.org/api/pyplot_api.html#matplotlib.pyplot.ylim
如果您搜索该API页面,还有许多与轴相关的其他操作例程。