Articles → Matplotlib → Markerfacecolor Attribute In Matplotlib
Markerfacecolor Attribute 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, marker="o", markersize=20, markerfacecolor="red")
plt.show()
Output
 
| Posted By  - | Karan Gupta | 
|  | 
| Posted On  - | Monday, June 17, 2019 |