I'm interested in fitting multiple Gaussian curves to the plot below in python. I need to be able to determine the mean of each gaussian to be able to estimate what 1 photoelectron corresponds to for a signal reading device that took this data. I need to know how to do this for an undetermined amount of peaks as each dataset might contain fewer / more photoelectron peaks. Any help would be appreciated!
Looked into gaussian mixtures, but couldn't find how to extract the individual Gaussians that fit the overall curve.
I suppose you're using Gaussian Mixture Model from sklearn.
In that case from the docs
The attributes
gm.means_
are the means of each mixture component.And
gm.covariances_
are the covariance (or variance for 1D) of each mixture component.With those (using a
for
) you can easily plot each component using, for example, something like bellow for the first component:And you can even sum them up, as you wish, to make a combined plot of their pdf's.