Python(例:matplotlib)は、次のようなタイルプロットを作成できますか?色は各データポイントでの強度を示しますか?ありがとう!
質問する
7451 次
3 に答える
3
マウスにマウスの下のデータの値を報告させたい場合にのみ、そのすべての機械が必要です。画像を生成するために本当に必要なのは (doc)だけです:
plt.imshow(data, interpolation='nearest')
cmap
キーワードを介してカラー マッピングを制御できます。
于 2013-01-22T19:27:29.403 に答える
2
http://matplotlib.org/examples/api/image_zcoord.htmlからの例を次に示します。
"""
Show how to modify the coordinate formatter to report the image "z"
value of the nearest pixel given x and y
"""
import numpy as np
import matplotlib.pyplot as plt
import matplotlib.cm as cm
X = 10*np.random.rand(5,3)
fig = plt.figure()
ax = fig.add_subplot(111)
ax.imshow(X, cmap=cm.jet, interpolation='nearest')
numrows, numcols = X.shape
def format_coord(x, y):
col = int(x+0.5)
row = int(y+0.5)
if col>=0 and col<numcols and row>=0 and row<numrows:
z = X[row,col]
return 'x=%1.4f, y=%1.4f, z=%1.4f'%(x, y, z)
else:
return 'x=%1.4f, y=%1.4f'%(x, y)
ax.format_coord = format_coord
plt.show()
于 2013-01-22T18:29:07.243 に答える
1
あなたが探しているimage_zcode
例は次のとおりです。
"""
Show how to modify the coordinate formatter to report the image "z"
value of the nearest pixel given x and y
"""
import numpy as np
import matplotlib.pyplot as plt
import matplotlib.cm as cm
X = 10*np.random.rand(5,3)
fig = plt.figure()
ax = fig.add_subplot(111)
ax.imshow(X, cmap=cm.jet, interpolation='nearest')
numrows, numcols = X.shape
def format_coord(x, y):
col = int(x+0.5)
row = int(y+0.5)
if col>=0 and col<numcols and row>=0 and row<numrows:
z = X[row,col]
return 'x=%1.4f, y=%1.4f, z=%1.4f'%(x, y, z)
else:
return 'x=%1.4f, y=%1.4f'%(x, y)
ax.format_coord = format_coord
plt.show()
于 2013-01-22T18:28:02.997 に答える