如何在"纯粹"中制作这个plot.ly heatmap-esque情节。蟒蛇?

时间:2016-04-06 23:14:52

标签: python matplotlib plot plotly

是否有一个等效的绘图功能和/或一个简单的方法来制作这个plot.ly情节在python in" pure" python使用例如matplotlib?

enter image description here

from here.

只是想知道是否存在等效功能或类似功能。找不到,或者找不到合适的东西。 " heatmap python"只提出方形图,改变它们的形状似乎很麻烦。

2 个答案:

答案 0 :(得分:1)

为了给您一个简单的例子,下面将生成附图。

from pylab import *
Z = rand(6, 100) # tried to make it look similar to your plot
c = pcolor(Z)
show()

enter image description here

答案 1 :(得分:1)

以Hun回答为基础,如果你不想让眼睛受到太多伤害,你可以使用另一种颜色图。这里viridis

import matplotlib.pyplot as plt
import numpy as np
Z = np.random.rand(6, 100)
c = plt.pcolor(Z, cmap='viridis')
plt.show()

enter image description here

并记住:pyplot& numpy会让您的名称空间保持整洁......