Similar to a pie chart, except it looks more like a donut. I think it looks better, plus I prefer donut over pies. ```python import pandas as pd import matplotlib.pyplot as plt def donut(values, labels, title): fig, ax = plt.subplots(figsize=(8,16)) wedges, _ = ax.pie(values, wedgeprops={'width': 0.4}) ax.set_title(title) plt.legend(labels,bbox_to_anchor=(0, 1), loc='upper right', ncol=1) plt.show() df = pd.read_csv('studies_published.csv') donut(df['k'], df['study_design'], 'Types of Studies Published') ``` ![donut]( <img style ="width:600px;" align = "center" src="Projects/Plots/donut.png">