1
如果我有一個DF:如何在Pandas中刪除空頭標題欄?
Name1 Name2 NUll Name3 NULL Name4
abc abc null abc
abc abc null abc
abc abc null abc
abc abc null abc
我可以使用dropna,保持NAME3與所有空值的列?然而,仍然放棄兩個空欄。 謝謝
如果我有一個DF:如何在Pandas中刪除空頭標題欄?
Name1 Name2 NUll Name3 NULL Name4
abc abc null abc
abc abc null abc
abc abc null abc
abc abc null abc
我可以使用dropna,保持NAME3與所有空值的列?然而,仍然放棄兩個空欄。 謝謝
怎麼樣使用DataFrame.drop
?
In [3]: df = pd.read_clipboard()
Out[3]:
Name1 Name2 NUll Name3 NULL Name4
0 abc abc null abc
1 abc abc null abc
2 abc abc null abc
3 abc abc null abc
In [4]: df.drop(["NUll", "NULL"], axis=1)
Out[4]:
Name1 Name2 Name3 Name4
0 abc abc null abc
1 abc abc null abc
2 abc abc null abc
3 abc abc null abc
您的意思是說,列標籤是'None'還是字符串值等於'NULL'? – piRSquared
標籤爲空。這只是xls文件中的一個完全空的列。 –