Use isna instead of isnull

このページは日本語には対応しておりません。随時翻訳に取り組んでいます。翻訳に関してご質問やご意見ございましたら、お気軽にご連絡ください。

Metadata

ID: python-pandas/isna-instead-of-isnull

Language: Python

Severity: Notice

Category: Best Practices

Description

The functions isna and isnull are similar. However, this is a best practice to use isna since other methods use the same naming patterns.

Learn More

Non-Compliant Code Examples

nulls = pd.isnull(val)  # prefer using isna

Compliant Code Examples

nas = pd.isna(val)
https://static.datadoghq.com/static/images/logos/github_avatar.svg https://static.datadoghq.com/static/images/logos/vscode_avatar.svg jetbrains

Seamless integrations. Try Datadog Code Analysis