Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

Matplotlib Basic: Plot quantities which have an x and y position

Matplotlib Basic: Exercise-10 with Solution

Write a Python program to plot quantities which have an x and y position.

Sample Solution:

Python Code:

import numpy as np
import pylab as pl
# Make an array of x values
x1 = [2, 3, 5, 6, 8]
# Make an array of y values for each x value
y1 = [1, 5, 10, 18, 20]
# Make an array of x values
x2 = [3, 4, 6, 7, 9]
# Make an array of y values for each x value
y2 = [2, 6, 11, 20, 22]
# set new axes limits
pl.axis([0, 10, 0, 30]) 
# use pylab to plot x and y as red circles
pl.plot(x1, y1,'b*', x2, y2, 'ro')
# show the plot on the screen
pl.show()

Sample Output:

Matplotlib Basic: Plot quantities which have an x and y position

Python Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a Python program to display the current axis limits values and set new axis values.
Next: Write a Python program to plot several lines with different format styles in one command using arrays.

What is the difficulty level of this exercise?