所以我在matplotlib中创建两个简单的条形图,我需要引用我从哪里得到数据。是否有允许我这样做的功能?
答案 0 :(得分:0)
您可以使用.annotate()
在您的情节脚下引用您的来源。例如:
import matplotlib.pyplot as plt
plt.annotate('[your citation here]', (0,0), (-80,-20), fontsize=6,
xycoords='axes fraction', textcoords='offset points', va='top')