Answers for "how to plot a point in matplotlib"

4

python add a point to a plot

# Basic syntax
plt.plot(x, y, 'marker')

# Example usage:
import matplotlib.pyplot as plt
import numpy as np

# Data to plot
x = np.linspace(0, 10, 100)

# Plot figure
fig = plt.figure()
plt.plot(x, np.sin(x), '-')

# Add point
plt.plot(5, 0, 'ro')

# Note, see all marker styles here:
#    https://matplotlib.org/stable/api/markers_api.html
Posted by: Guest on April-26-2021

Code answers related to "how to plot a point in matplotlib"

Python Answers by Framework

Browse Popular Code Answers by Language