如何仅打印非NaN值?

时间:2018-06-21 16:23:40

标签: python python-3.x pandas dataframe

我想知道如何打印不是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().

0 个答案:

没有答案