Skip to content
Snippets Groups Projects
Commit d756f5a2 authored by Alexis GAMELIN's avatar Alexis GAMELIN
Browse files

[Fix] Bunch.plot_phasespace

Now works correctly for up to date version of seaborn.
parent f4d6abe9
No related branches found
No related tags found
No related merge requests found
...@@ -366,7 +366,7 @@ class Bunch: ...@@ -366,7 +366,7 @@ class Bunch:
ax = fig.gca() ax = fig.gca()
ax.plot(center, profile) ax.plot(center, profile)
def plot_phasespace(self, x_var="tau", y_var="delta", plot_type="j"): def plot_phasespace(self, x_var="tau", y_var="delta", kind="scatter"):
""" """
Plot phase space. Plot phase space.
...@@ -376,9 +376,9 @@ class Bunch: ...@@ -376,9 +376,9 @@ class Bunch:
Dimension to plot on horizontal axis. Dimension to plot on horizontal axis.
y_var : str y_var : str
Dimension to plot on vertical axis. Dimension to plot on vertical axis.
plot_type : str {"j" , "sc"} kind : str, {"scatter", "kde", "hist", "hex", "reg", "resid"}
Type of the plot. The defualt value is "j" for a joint plot. Kind of plot to draw. See seeborn documentation.
Can be modified to "sc" for a scatter plot. The defualt value is "scatter".
Return Return
------ ------
...@@ -389,23 +389,12 @@ class Bunch: ...@@ -389,23 +389,12 @@ class Bunch:
label_dict = {"x":"x (mm)", "xp":"x' (mrad)", "y":"y (mm)", label_dict = {"x":"x (mm)", "xp":"x' (mrad)", "y":"y (mm)",
"yp":"y' (mrad)","tau":"$\\tau$ (ps)", "delta":"$\\delta$"} "yp":"y' (mrad)","tau":"$\\tau$ (ps)", "delta":"$\\delta$"}
scale = {"x": 1e3, "xp":1e3, "y":1e3, "yp":1e3, "tau":1e12, "delta":1} scale = {"x": 1e3, "xp":1e3, "y":1e3, "yp":1e3, "tau":1e12, "delta":1}
fig = sns.jointplot(x=self.particles[x_var]*scale[x_var],
if plot_type == "sc": y=self.particles[y_var]*scale[y_var],
fig, ax = plt.subplots() kind=kind)
ax.scatter(self.particles[x_var]*scale[x_var], plt.xlabel(label_dict[x_var])
self.particles[y_var]*scale[y_var]) plt.ylabel(label_dict[y_var])
ax.set_xlabel(label_dict[x_var])
ax.set_ylabel(label_dict[y_var])
elif plot_type == "j":
fig = sns.jointplot(self.particles[x_var]*scale[x_var],
self.particles[y_var]*scale[y_var],kind="kde")
plt.xlabel(label_dict[x_var])
plt.ylabel(label_dict[y_var])
else:
raise ValueError("Plot type not recognised.")
return fig return fig
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment