# Data Visualization with Matplotlib Matplotlib is a plotting library for creating static, animated, and interactive visualizations. ## Creating a Simple Plot: You can create various types of plots easily. Example: import matplotlib.pyplot as plt x = [1, 2, 3, 4] y = [10, 15, 7, 10] plt.plot(x, y) plt.title('Sample Plot') plt.xlabel('X-axis') plt.ylabel('Y-axis') plt.show()