Matplotlib: Add single dot at X/Y coordinates
In order to add a single dot at a specific X/Y coordinate in a Matplotlib plot, you can just use ax.plot() with a single X/Y pair and marker='o':
plot_single_dot.py
ax.plot(x_tangent, y_tangent, marker='o', color='blue', markersize=10)Check out similar posts by category:
Matplotlib, Python
If this post helped you, please consider buying me a coffee or donating via PayPal to support research & publishing of new posts on TechOverflow