Skip to content

Commit

Permalink
try plot with light line through scatter points
Browse files Browse the repository at this point in the history
  • Loading branch information
teopb committed Aug 9, 2023
1 parent ad32370 commit beefe64
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion MPAS_true_failure_testing/post_ect_script.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,8 @@ def plot_test_results(plot_data, file_path, scale="log", plot_pca = True, plot_p

# plt.plot(x, y)

plt.scatter(filtered_x, filtered_y)
plt.scatter(filtered_x, filtered_y, label="Test Locations")
plt.plot(filtered_x, filtered_y, alpha = .2, linestyle="dashed")
plt.axvline(x=0, color='b', label="Default Variable Value")

for i, model_failure in enumerate(model_run_failures):
Expand Down

0 comments on commit beefe64

Please sign in to comment.