Python Pandas - 返回無 NaN 值的索引


要返回沒有 NaN 值的索引,請在 Pandas 中使用 index.dropna() 方法。首先,匯入所需的庫 -

import pandas as pd
import numpy as np

建立帶有一些 NaN 值的 Pandas 索引 -

index = pd.Index([50, 10, 70, np.nan, 90, 50, np.nan, np.nan, 30])

顯示 Pandas 索引 -

print("Pandas Index...\n",index)

僅刪除 NaN 值 -

print("\nThe Index object after removing NaN values...\n",index.dropna())

示例

程式碼如下 -

import pandas as pd
import numpy as np

# Creating Pandas index with some NaN values as well
index = pd.Index([50, 10, 70, np.nan, 90, 50, np.nan, np.nan, 30])

# Display the Pandas index
print("Pandas Index...\n",index)

# Return the number of elements in the Index
print("\nNumber of elements in the index...\n",index.size)

# Return the dtype of the data
print("\nThe dtype object...\n",index.dtype)

# Drop only the NaN values
print("\nThe Index object after removing NaN values...\n",index.dropna())

輸出

這將產生以下輸出 -

Pandas Index...
Float64Index([50.0, 10.0, 70.0, nan, 90.0, 50.0, nan, nan, 30.0], dtype='float64')

Number of elements in the index...
9

The dtype object...
float64

The Index object after removing NaN values...
Float64Index([50.0, 10.0, 70.0, 90.0, 50.0, 30.0], dtype='float64')

更新時間:13-Oct-2021

333 瀏覽量

開啟您的 職業生涯

完成課程即可獲得認證

開始
廣告
© . All rights reserved.