2016-12-08 4 views

Antwort

0

Sie können .annotate() verwenden, um Ihre Quelle am Fuß Ihrer Handlung anzugeben. Beispiel:

import matplotlib.pyplot as plt 

plt.annotate('[your citation here]', (0,0), (-80,-20), fontsize=6, 
      xycoords='axes fraction', textcoords='offset points', va='top') 
Verwandte Themen