df = md.DataFrame({"col1": [1, 2, 3, 4], "col2": ["A", "B", "A", "B"]})
plot = df.groupby("col2").plot(kind="bar", title="DataFrameGroupBy Plot")
