특정 조건이 적용되는 0으로 일부 행을 채우려고합니다. 이 IndexingError: Unalignable boolean Series key provided
기원전 작동하지 않습니다팬다 - 행의 하위 집합이있는 fillna
df.loc[:,(df.Available == True) & (df.Intensity.isnull())].Intensity = df.loc[(df.Available == True) & (df.Intensity.isnull())].Intensity.fillna(0, inplace=True)
하지만 때 난 그냥 사본을 갱신으로 등록
df.loc[(df.Available == True) & (df.Intensity.isnull())].Intensity = df.loc[(df.Available == True) & (df.Intensity.isnull())].Intensity.fillna(0, inplace=True)
시도 : 나는 노력하고있어. 어떻게해야합니까? 고맙습니다!
할 수 있습니다. – piRSquared