想绘制网格,python

时间:2017-03-09 06:28:49

标签: python bioinformatics ekg

我想用python绘制网格表,但现在我可以绘制心电图,我无法绘制网格。 现在>>我的心电图 enter image description here

在未来,我想要带有ECG图的红色网格。 你能给我一些建议画红线吗? enter image description here

1 个答案:

答案 0 :(得分:0)

这对您来说可能为时已晚,但是我希望这会有所帮助:

fig, ax = plt.subplots()

# plot your ECG

# Turn on the minor ticks on
ax.minorticks_on()

# Make the major grid
ax.grid(which='major', linestyle='-', color='red', linewidth='1.0')
# Make the minor grid
ax.grid(which='minor', linestyle=':', color='black', linewidth='0.5')