I don't know how to specify the position of the title using matplotlib. I want the title to be a bit more further away from the label but I don't know how to set it.
labels = df03['new_sentiment']
count = df03['count']
fig1, ax1 = plt.subplots()
ax1.pie(count, labels=labels, autopct='%1.1f%%')
ax1.axis('equal')
plt.title('7D-prior-3MD_sem_sen')
plt.savefig('04_7D-prior-3MD_sem_sen.tiff', dpi=300, format='tiff', bbox_inches='tight')
