我怎样才能适应我的情节?
到目前为止,我有以下代码,它从一个数组(来自实验的数据)中绘制各种图表,因为它被放置在一个循环中:
import matplotlib as plt
plt.figure(6)
plt.semilogx(Tau_Array, Correlation_Array, '+-')
plt.ylabel('Correlation')
plt.xlabel('Tau')
plt.title("APD" + str(detector) + "_Correlations_log_graph")
plt.savefig(DataFolder + "/APD" + str(detector) + "_Correlations_log_graph.png")
到目前为止,这适用于对数图,但我想知道拟合过程如何在这里工作。最后,我想要某种公式或/和图表来最好地描述我测量的数据。
如果有人可以帮助我,我会很高兴!