# Data Visualization with Matplotlib Matplotlib is a popular library for creating visualizations in Python. ## Creating a Simple Plot: You can create a basic line plot using Matplotlib. Example: import matplotlib.pyplot as plt x = [1, 2, 3, 4] y = [10, 15, 20, 25] plt.plot(x, y) plt.title('Sample Line Plot') plt.xlabel('X-axis') plt.ylabel('Y-axis') plt.show()