Skip to content

Commit

Permalink
fixed coding norms
Browse files Browse the repository at this point in the history
  • Loading branch information
azadeh-gh committed Feb 22, 2024
1 parent 7fb6043 commit 6ae0155
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ush/obsErrorAssignmentTool/ObsErrorAssignment.py
Original file line number Diff line number Diff line change
Expand Up @@ -265,14 +265,14 @@ def plots(
pdf_norm = kde_norm.evaluate(x_norm)
ax3.plot(x_norm, pdf_norm, label="normalized", color="red")
ax3.legend(loc="upper right", markerscale=2, scatterpoints=1)
ax3.set_xlabel("FG departure",fontsize=14)
ax3.set_ylabel("PDF",fontsize=14)
ax3.set_xlabel("FG departure", fontsize=14)
ax3.set_ylabel("PDF", fontsize=14)
ax3.set_yscale("log")
ax3.set_xlim(-10, 10)

ax4 = fig.add_subplot(2, 2, 4)
ax4.hist(AllErrors, bins=100, density=True, alpha=0.5, label="Un-normalized")
ax4.set_xlabel("Errors",fontsize=14)
ax4.set_xlabel("Errors", fontsize=14)
ax4.legend(loc="upper right", markerscale=2, scatterpoints=1)

plt.tight_layout()
Expand Down

0 comments on commit 6ae0155

Please sign in to comment.