pandas操作一列数据

def tt(x): 
    if x.name == "distribution":
        return [el[0:10] for el in x.values]
    else:
        return x
test1 = test.apply(tt)

你可能感兴趣的:(pandas操作一列数据)