Skip to content

Commit

Permalink
Fix #279 (#280)
Browse files Browse the repository at this point in the history
* sub ax for plt

* Added Contributor

---------

Co-authored-by: matt <[email protected]>
  • Loading branch information
SeisMatt and matt authored Oct 12, 2023
1 parent ad8e216 commit 12e2abf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion dascore/viz/wiggle.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ def wiggle(
other_axis_ticks = patch.coords.get_array(other_dim)
offsets, data_scaled = _get_offsets_factor(patch, dim, scale, other_axis_ticks)
# now plot, add labels, etc.
plt.plot(connect_axis_ticks, data_scaled, color=color, alpha=alpha)
ax.plot(connect_axis_ticks, data_scaled, color=color, alpha=alpha)
# shade negative part of waveforms if desired
if shade:
_shade(offsets, ax, data_scaled, color, connect_axis_ticks)
Expand Down
2 changes: 2 additions & 0 deletions docs/contributors.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,7 @@ A Huge thanks to all of our contributors:

[Aaron Girard](https://github.com/aaronjgirard)

[Manuel M. Mendoza](https:/github.com/SeisMatt)

You can find more contributor information
[here](https://github.com/DASDAE/dascore/graphs/contributors)

0 comments on commit 12e2abf

Please sign in to comment.