Skip to content

Commit

Permalink
Fixed minor bug in plotReport()
Browse files Browse the repository at this point in the history
  • Loading branch information
ahotovec committed Jan 6, 2023
1 parent 4ae2a9c commit 745b038
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion redpy/plotting.py
Original file line number Diff line number Diff line change
Expand Up @@ -1902,7 +1902,7 @@ def plotReport(rtable, ftable, ctable, fnum, ordered, matrixtofile, opt):
for sta in range(opt.nsta):
n = -1
data = np.zeros((len(fam), int(opt.winlen*2)))
ax = fig2.add_subplot(np.ceil((opt.nsta)/2.), 2, sta+1)
ax = fig2.add_subplot(int(np.ceil((opt.nsta)/2.)), 2, sta+1)
for r in famtable:
if ordered:
plt.title('{0}.{1} (Ordered)'.format(opt.station.split(',')[sta],
Expand Down

0 comments on commit 745b038

Please sign in to comment.