Skip to content

Commit

Permalink
fix plot style conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
louis-richard committed Feb 9, 2024
1 parent 8681b00 commit 79fe539
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
7 changes: 3 additions & 4 deletions pyrfu/plot/mms_pl_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
__version__ = "2.4.2"
__status__ = "Prototype"

plt.style.use("seaborn-ticks")
colors = ["tab:blue", "tab:green", "tab:red", "k"]
markers = ["s", "d", "o", "^"]

Expand Down Expand Up @@ -125,9 +124,9 @@ def mms_pl_config(r_mms):
axs3.set_xlim([-30, 30])
axs3.set_ylim([30, -30])
axs3.set_zlim([-30, 30])
axs3.set_xlabel("$\\Delta X$ [km]")
axs3.set_ylabel("$\\Delta Y$ [km]")
axs3.set_zlabel("$\\Delta Z$ [km]")
axs3.set_xlabel(r"$\Delta X$ [km]")
axs3.set_ylabel(r"$\Delta Y$ [km]")
axs3.set_zlabel(r"$\Delta Z$ [km]")

axs3.legend(["MMS1", "MMS2", "MMS3", "MMS4"], frameon=False)

Expand Down
2 changes: 0 additions & 2 deletions pyrfu/plot/plot_spectr.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@
__version__ = "2.4.2"
__status__ = "Prototype"

plt.style.use("seaborn-ticks")


def plot_spectr(
axis,
Expand Down

0 comments on commit 79fe539

Please sign in to comment.