I am doing some visualization in Google Colabs with pyplot and seaborn.
Trying use fig, axes to get 6 plots but on testing I get all plots in one. Any ideas as of why? Is it a Colabs problem or is it me?
fig, axes = plt.subplots(2,3,figsize=(15,10))
axes[0] = plt.plot([1, 2, 3, 4])
axes[1] = plt.plot([2, 2, 3, 4])
axes[2] = plt.plot([3, 2, 3, 4])
axes[3] = plt.plot([4, 2, 3, 4])
axes[4] = plt.plot([5, 2, 3, 4])
axes[5] = plt.plot([6, 2, 3, 4])
Been trying to google and searching stack but without finding a solution.
Kindly Andy