我想知道如何打印不是NaN的值。我看过很多帖子,它们试图对结果进行计数或求和,但是我想显示它。
This other question关于如何删除NaN值。但是我不想删除NaN值,只是不显示它们。
使用以下代码:
import pandas as pd
birthday = pd.read_csv('birthday_data.csv')
print(birthday['BirthMonth'].notna())
if birthday['BirthMonth'].notna() == True:
print(birthday['BirthMonth'])
我收到此错误:
ValueError: The truth value of a Series is ambiguous. Use a.empty, a.bool(), a.item(), a.any() or a.all().