{"id":24529937,"url":"https://github.com/jvelezmagic/pandas-missing","last_synced_at":"2025-04-14T17:37:47.141Z","repository":{"id":50528946,"uuid":"519344679","full_name":"jvelezmagic/pandas-missing","owner":"jvelezmagic","description":"A pandas extension to explore and handle missing values.","archived":false,"fork":false,"pushed_at":"2022-09-18T19:54:40.000Z","size":371,"stargazers_count":1,"open_issues_count":0,"forks_count":2,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-02T04:03:57.599Z","etag":null,"topics":["data-exploration","eda","missing-data","missing-values","pandas"],"latest_commit_sha":null,"homepage":"https://jvelezmagic.github.io/pandas-missing/","language":"Jupyter Notebook","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jvelezmagic.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-07-29T20:42:13.000Z","updated_at":"2023-01-05T10:33:22.000Z","dependencies_parsed_at":"2022-09-22T19:52:55.190Z","dependency_job_id":null,"html_url":"https://github.com/jvelezmagic/pandas-missing","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jvelezmagic%2Fpandas-missing","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jvelezmagic%2Fpandas-missing/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jvelezmagic%2Fpandas-missing/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jvelezmagic%2Fpandas-missing/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jvelezmagic","download_url":"https://codeload.github.com/jvelezmagic/pandas-missing/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":235082228,"owners_count":18932920,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["data-exploration","eda","missing-data","missing-values","pandas"],"created_at":"2025-01-22T07:53:06.882Z","updated_at":"2025-01-22T07:53:07.601Z","avatar_url":"https://github.com/jvelezmagic.png","language":"Jupyter Notebook","funding_links":[],"categories":[],"sub_categories":[],"readme":"Pandas missing\n================\n\n\u003c!-- WARNING: THIS FILE WAS AUTOGENERATED! DO NOT EDIT! --\u003e\n\n## Install\n\n``` bash\npip install pandas-missing\n```\n\nor\n\n``` bash\nconda install -c jvelezmagic pandas_missing\n```\n\n## How to use\n\n``` python\nimport pandas as pd\nimport pandas_missing\n```\n\n``` python\ndf = pd.DataFrame.from_dict(\n    {\n        \"number\": range(0, 15)\n    }\n)\n\ndf.iloc[3:6, :] = None\n\ndf\n```\n\n\u003cdiv\u003e\n\u003cstyle scoped\u003e\n    .dataframe tbody tr th:only-of-type {\n        vertical-align: middle;\n    }\n\n    .dataframe tbody tr th {\n        vertical-align: top;\n    }\n\n    .dataframe thead th {\n        text-align: right;\n    }\n\u003c/style\u003e\n\u003ctable border=\"1\" class=\"dataframe\"\u003e\n  \u003cthead\u003e\n    \u003ctr style=\"text-align: right;\"\u003e\n      \u003cth\u003e\u003c/th\u003e\n      \u003cth\u003enumber\u003c/th\u003e\n    \u003c/tr\u003e\n  \u003c/thead\u003e\n  \u003ctbody\u003e\n    \u003ctr\u003e\n      \u003cth\u003e0\u003c/th\u003e\n      \u003ctd\u003e0.0\u003c/td\u003e\n    \u003c/tr\u003e\n    \u003ctr\u003e\n      \u003cth\u003e1\u003c/th\u003e\n      \u003ctd\u003e1.0\u003c/td\u003e\n    \u003c/tr\u003e\n    \u003ctr\u003e\n      \u003cth\u003e2\u003c/th\u003e\n      \u003ctd\u003e2.0\u003c/td\u003e\n    \u003c/tr\u003e\n    \u003ctr\u003e\n      \u003cth\u003e3\u003c/th\u003e\n      \u003ctd\u003eNaN\u003c/td\u003e\n    \u003c/tr\u003e\n    \u003ctr\u003e\n      \u003cth\u003e4\u003c/th\u003e\n      \u003ctd\u003eNaN\u003c/td\u003e\n    \u003c/tr\u003e\n    \u003ctr\u003e\n      \u003cth\u003e5\u003c/th\u003e\n      \u003ctd\u003eNaN\u003c/td\u003e\n    \u003c/tr\u003e\n    \u003ctr\u003e\n      \u003cth\u003e6\u003c/th\u003e\n      \u003ctd\u003e6.0\u003c/td\u003e\n    \u003c/tr\u003e\n    \u003ctr\u003e\n      \u003cth\u003e7\u003c/th\u003e\n      \u003ctd\u003e7.0\u003c/td\u003e\n    \u003c/tr\u003e\n    \u003ctr\u003e\n      \u003cth\u003e8\u003c/th\u003e\n      \u003ctd\u003e8.0\u003c/td\u003e\n    \u003c/tr\u003e\n    \u003ctr\u003e\n      \u003cth\u003e9\u003c/th\u003e\n      \u003ctd\u003e9.0\u003c/td\u003e\n    \u003c/tr\u003e\n    \u003ctr\u003e\n      \u003cth\u003e10\u003c/th\u003e\n      \u003ctd\u003e10.0\u003c/td\u003e\n    \u003c/tr\u003e\n    \u003ctr\u003e\n      \u003cth\u003e11\u003c/th\u003e\n      \u003ctd\u003e11.0\u003c/td\u003e\n    \u003c/tr\u003e\n    \u003ctr\u003e\n      \u003cth\u003e12\u003c/th\u003e\n      \u003ctd\u003e12.0\u003c/td\u003e\n    \u003c/tr\u003e\n    \u003ctr\u003e\n      \u003cth\u003e13\u003c/th\u003e\n      \u003ctd\u003e13.0\u003c/td\u003e\n    \u003c/tr\u003e\n    \u003ctr\u003e\n      \u003cth\u003e14\u003c/th\u003e\n      \u003ctd\u003e14.0\u003c/td\u003e\n    \u003c/tr\u003e\n  \u003c/tbody\u003e\n\u003c/table\u003e\n\u003c/div\u003e\n\n``` python\ndf.missing.number_missing()\n```\n\n    3\n\n``` python\ndf.missing.number_complete()\n```\n\n    12\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjvelezmagic%2Fpandas-missing","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjvelezmagic%2Fpandas-missing","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjvelezmagic%2Fpandas-missing/lists"}