Как удалить значения NA в рамке данных
# if you want to delete rows containing NA values
df.dropna(inplace=True)
Expensive Eel
# if you want to delete rows containing NA values
df.dropna(inplace=True)