Skip to content
Snippets Groups Projects
Commit e295b9fd authored by Zizhe Wang's avatar Zizhe Wang
Browse files

docs syntax correct

parent fe0bc53c
No related branches found
No related tags found
No related merge requests found
...@@ -56,9 +56,9 @@ for i, result in enumerate(res.F): ...@@ -56,9 +56,9 @@ for i, result in enumerate(res.F):
# Plot the results # Plot the results
plt.figure(figsize=(8, 6)) plt.figure(figsize=(8, 6))
plt.scatter(res.F[:, 0], res.F[:, 1]) plt.scatter(res.F[:, 0], res.F[:, 1])
plt.xlabel(PLOT_X) plt.xlabel(PLOT_CONFIG["PLOT_X"])
plt.ylabel(PLOT_Y) plt.ylabel(PLOT_CONFIG["PLOT_Y"])
plt.title(PLOT_TITLE) plt.title(PLOT_CONFIG["PLOT_TITLE"])
plt.grid(True) plt.grid(True)
plt.tight_layout() plt.tight_layout()
plt.show() plt.show()
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment