Using Python for data analysis (10) pandas basics: processing missing data, pythonpandas

Source: Internet
Author: User

Using Python for data analysis (10) pandas basics: processing missing data, pythonpandas
Incomplete Data is common in data analysis. Pandas uses the floating-point value NaN to indicate missing data in floating-point and non-floating-point groups. Pandas uses the isnull () and notnull () functions to determine the missing condition.
The general processing method for missing data isFilter outOrFill.
Filter out missing dataFor a Series, the dropna () function returns a Series containing non-null data and index values, for example, filling in missing data.
If you do not want to discard the missing data but want to use the default value to fill these holes, you can use the fillna () function: if you do not want to only fill in a scalar, You can input a dictionary, fill different values in different columns:

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.