Skip to content

Commit 6e3edb8

Browse files
committed
Update inversion_2d.py
1 parent 6732062 commit 6e3edb8

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

mtpy/modeling/simpeg/recipes/inversion_2d.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -570,8 +570,8 @@ def plot_responses(self, iteration_number, **kwargs):
570570

571571
obs_color = kwargs.get("obs_color", (0, 118 / 255, 1))
572572
pred_color = kwargs.get("pred_color", (1, 110 / 255, 0))
573-
obs_marker = "."
574-
pred_maker = "."
573+
obs_marker = "o"
574+
pred_maker = "x"
575575

576576
## With these plot frequency goes from high on the left to low on the right.
577577
## Moving shallow to deep from left to right.
@@ -587,13 +587,13 @@ def plot_responses(self, iteration_number, **kwargs):
587587
# plot TE Resistivity
588588
ax1.semilogy(
589589
te_obs[:, 0, :].flatten(),
590-
".",
590+
obs_marker,
591591
color=obs_color,
592-
label="observed",
592+
label="observed"
593593
)
594594
ax1.semilogy(
595595
te_pred[:, 0, :].flatten(),
596-
".",
596+
pred_maker,
597597
color=pred_color,
598598
label="predicted",
599599
)
@@ -664,13 +664,13 @@ def plot_responses(self, iteration_number, **kwargs):
664664
# plot TE Resistivity
665665
ax1.semilogy(
666666
np.abs(te_obs[:, 0, :].flatten()),
667-
".",
667+
obs_marker,
668668
color=obs_color,
669669
label="observed",
670670
)
671671
ax1.semilogy(
672672
np.abs(te_pred[:, 0, :].flatten()),
673-
".",
673+
pred_maker,
674674
color=pred_color,
675675
label="predicted",
676676
)

0 commit comments

Comments
 (0)