Skip to content

Commit e6813e4

Browse files
committed
bigger annotations
1 parent a06ab4a commit e6813e4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

wfdb/_plotwfdb.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@ def plotwfdb(sig, fields, annsamp=[], annch=[0], title=[], plottime=1):
3737
plt.subplot(100*sig.shape[1]+11+ch)
3838
plt.plot(t, sig[:,ch]) # Plot signal channel
3939
if (annsamp!=[]) & (ch in annch): # If there are annotations to plot and the channel is specified
40-
plt.plot(annplott, sig[annsamp, ch], 'r+') # Plot annotations
40+
plt.plot(annplott, sig[annsamp, ch], 'r+',
41+
linewidth=2, markersize=12)
4142

4243
if (title!=[])&(ch==0):
4344
plt.title(title)

0 commit comments

Comments
 (0)