我有以下內容的熊貓數據幀DF1的一些列值的熊貓數據幀:製作基於另一個數據框
Serial N year current
B 10 14
B 10 16
B 11 10
B 11
B 11 15
C 12 11
C 9
C 12 13
C 12
我想提出一個基於df1
一個數據幀,但有任何行包含已刪除的空值。例如:
Serial N year current
B 10 14
B 10 16
B 11 10
B 11 15
C 12 11
C 12 13
我想是這樣的
df1=df[~np.isnan(df["year"]) or ~np.isnan(df["current"])]
但我收到以下錯誤:
ValueError: The truth value of a Series is ambiguous. Use a.empty, a.bool(), a.item(), a.any() or a.all().
可能是什麼問題呢?
或'DF1 = df.dropna()' – Thanos
@Thanos的確,已經更新 – EdChum
謝謝。這工作完美 – user3841581