0

我正在尝试使用 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)。我想根据输入文件动态设置轴。任何帮助将不胜感激,谢谢!

4

1 回答 1

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 页面周围搜索,还有许多其他与轴相关的操作例程。

于 2013-06-21T22:08:27.313 回答