Articles → Matplotlib → Plot Function In Matplotlib

Plot Function In Matplotlib






Purpose





Example


import matplotlib.pyplot as plt
import array 


arr1 = array.array('i', [1, 2, 3])
arr2 = array.array('i', [4, 5, 6])

plt.plot(arr1,arr2)
plt.show()



Output


Picture showing the output of plot function in matplotlib



Specifying The Color Of The Graph




import matplotlib.pyplot as plt
import array 


arr1 = array.array('i', [1, 2, 3])
arr2 = array.array('i', [4, 5, 6])

plt.plot(arr1,arr2,"y")
plt.show()




Picture showing the graph with the color using the plot function in matplotlib




import matplotlib.pyplot as plt
import array 


arr1 = array.array('i', [1, 2, 3])
arr2 = array.array('i', [4, 5, 6])

plt.plot(arr1,arr2,"#2A2D32")
plt.show()


Picture showing the graph with the color with the hex code using the plot function in matplotlib



Posted By  -  Karan Gupta
 
Posted On  -  Wednesday, May 22, 2019
 
Updated On  -  Wednesday, June 5, 2019

Query/Feedback


Your Email Id
 
Subject
 
Query/FeedbackCharacters remaining 250