我有一个分组的 astropy 表,并且想遍历这些组并分别对每个组执行裁剪平均值。
下面的 MWE 说明了我正在尝试做的事情。当代码运行时,它不会抛出错误,而是列“c”的值保持为 0.0。我觉得我可能从根本上误解了表格环境的工作原理,但不确定到底是什么。
import numpy as np
from astropy.table import Table
from astropy.stats import sigma_clip
a = np.array([5.7, 5.9, 5.1, 5.3, 5.7, 5.4, 6.0, 8.6, 6.4, 5.2])
b = np.array([0, 0, 0, 0, 1, 1, 1, 1, 1, 1])
c = np.zeros(len(a))
tab = Table( (a,b,c), names=('a','b','c'), masked=True )
tabGrp = tab.group_by('b')
for x in tabGrp.groups:
clipped = sigma_clip( x['a'], sigma=2)
x['c'] = clipped