Food Plot

import pandas as pd
import numpy as np
abc = np.array([
    [9, 13, 10],
    [7, 12, 9],
    [19, 11, 8],
    [12, 10, 11]
])
abc
array([[ 9, 13, 10],
       [ 7, 12,  9],
       [19, 11,  8],
       [12, 10, 11]])
df2 = pd.DataFrame(abc, columns=['breakfast', 'lunch', 'dinner'])
df2.plot()
<matplotlib.axes._subplots.AxesSubplot at 0x122961780>

png