Pandas pd.DataFrame.plot(). , , kind='pie' , ( subplots=True ). .
import matplotlib.pyplot as plt
df.Data.plot(kind='pie')
, :
fig = plt.figure(figsize=(6,6), dpi=200)
ax = plt.subplot(111)
df.Data.plot(kind='pie', ax=ax, autopct='%1.1f%%', startangle=270, fontsize=17)
DataFrame, ax=ax. matplotlib plt.pie(), .