Skip to content
Snippets Groups Projects
Commit 289ab131 authored by Danilo Ferreira de Lima's avatar Danilo Ferreira de Lima
Browse files

Changed plotting style.

parent 0281f55d
No related branches found
No related tags found
No related merge requests found
......@@ -107,12 +107,12 @@ def plot_chi2_intensity(df: pd.DataFrame, filename: str):
fig = plt.figure(figsize=(12, 8))
gs = GridSpec(1, 1)
ax = fig.add_subplot(gs[0, 0])
sns.kdeplot(x=df.chi2_prepca/df.ndof.iloc[0], y=df.xgm_flux_t*1e-3,
fill=True,
ax=ax)
#sns.kdeplot(x=df.chi2_prepca/df.ndof.iloc[0], y=df.xgm_flux_t*1e-3,
# fill=True,
# ax=ax)
sns.scatterplot(x=df.chi2_prepca/df.ndof.iloc[0], y=df.xgm_flux_t*1e-3,
s=5,
alpha=0.4,
#alpha=0.4,
c="tab:red",
#size=df.root_mean_squared_pca_unc,
#sizes=(20, 200),
......
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