An mne.Dipole object has several attributes like the goodness of fit (gof), see:
|
self.pos = np.array(pos) |
|
self.amplitude = np.array(amplitude) |
|
self.ori = np.array(ori) |
|
self.gof = np.array(gof) |
|
self.name = name |
|
self.conf = dict() |
|
if conf is not None: |
|
for key, value in conf.items(): |
|
self.conf[key] = np.array(value) |
|
self.khi2 = np.array(khi2) if khi2 is not None else None |
|
self.nfree = np.array(nfree) if nfree is not None else None |
However in the API docs, only "times" is documented:

Should sphinx not pick these up automatically?
An mne.Dipole object has several attributes like the goodness of fit (gof), see:
mne-python/mne/dipole.py
Lines 134 to 144 in be27cf8
However in the API docs, only "times" is documented:
Should sphinx not pick these up automatically?