Questions: Fill in the code below to visualize all 100 protein expressions.
Here is my code. I don't know why it keeps showing 'numpy.ndarray' object has no attribute 'plot'.
fig, ax = plt.subplots(10,10,figsize=(15,15), sharex=True, sharey=True)
for i, protein in enumerate(PROTEIN_NAMES):
ax[i].plot(young_df[i], label="Young", alpha=0.6)
ax[i].plot(old_df[i], label="Old", alpha=0.6)
continue
fig.text(0.5, 0.04, 'Sample number', ha='center', va='center')
fig.text(0.06, 0.5, 'Expression Value', ha='center', va='center', rotation='vertical')