我怎样才能用这样的高斯函数做更好的曲线拟合?

How can I do a better curve fitting with a gaussian function like this?

我有数据,我正在用高斯曲线拟合来拟合数据。蓝色子弹是我的数据。高斯从零开始,看起来像红色曲线。但我想要一些东西,看起来更像绿色曲线。我在互联网上找到的所有高斯曲线拟合示例都从零开始。也许还有另一个函数可以改变起始 y 值或类似的东西?

到目前为止,这是我的代码:

import matplotlib.pyplot as plt
from scipy.optimize import curve_fit
import numpy as np
import os
import csv

path = 'Proben Bilder v06 results'
filename = '00_sumListe.csv'

# read csv file with scale data
x = []
y = []
with open(os.path.join(path, filename), 'r') as csvfile:
    sumFile = csv.reader(csvfile, delimiter=',')
    for row in sumFile:
        id = float(row[0])
        sumListe = -float(row[1])
        x = np.append(x, id)
        y = np.append(y, sumListe)
y = y-min(y)
# x = np.arange(10)
# y = np.array([0, 1, 2, 3, 4, 5, 4, 3, 2, 1])

# weighted arithmetic mean (corrected - check the section below)
mean = sum(x * y) / sum(y)
sigma = np.sqrt(sum(y * (x - mean)**2) / sum(y))


def gauss(x, a, x0, sigma):             # x0 = mü
    return a * np.exp(-(x - x0)**2 / (2 * sigma**2))


popt, pcov = curve_fit(gauss, x, y, p0=[max(y), mean, sigma])
# plt.gca().invert_yaxis()
plt.plot(x, y, 'b+:', label='data')
plt.plot(x, gauss(x, *popt), 'r-', label='fit')
plt.legend()
plt.title('Fig. 3 - Fit for Time Constant')
plt.xlabel('steps')
plt.ylabel('mean value')
plt.show()

我的数据有点大,写在这里...我加载不出来还是可以?

有没有人有更好的主意?

您可以修改您的高斯函数,以便在 y 轴上有一个偏移量,可能 给您一个更好的拟合。这需要您在 p0

中添加一个额外的初始猜测
# your code here

def gauss2(x, b, a, x0, sigma):
    return b + (a * np.exp(-(x - x0) ** 2 / (2 * sigma ** 2)))

popt, pcov = curve_fit(gauss2, x, y, p0=[10, max(y), mean, sigma])