I want to plot a 2D NumPy array using line plots for each of the columns:
import numpy as np
import matplotlib.pyplot as plt
arr = np.random.random((10, 5))
ax.plot(arr)
However, I am not sure how to assign label names for each of the five columns.
Assume that the column names are : a, b, c, d and e.