data-profiler-kit


Namedata-profiler-kit JSON
Version 0.1.2 PyPI version JSON
download
home_pageNone
SummaryA library to provide quick and insightful data profiling for pandas DataFrames
upload_time2024-11-22 15:00:53
maintainerNone
docs_urlNone
authorNone
requires_python>=3.7
licenseMIT License Copyright (c) 2024 Najm Eddine Charaf Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
keywords data profiling pandas analytics
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # DataProfilerKit

A Python library that provides quick and insightful data profiling for pandas DataFrames. It generates detailed reports including missing values analysis, data type information, correlations, outliers, and column statistics in a clear, organized format.

## Installation

```bash
pip install data-profiler-kit
```

## Usage

```python
from dataprofilerkit import DataProfiler
import pandas as pd

# Create or load your DataFrame
df = pd.read_csv('your_data.csv')

# Create a DataProfiler instance
profiler = DataProfiler(df)

# Generate the profile
profile = profiler.generate_profile()

# Access different aspects of the profile
print("Basic Information:")
print(profile['basic_info'])

print("\nMissing Values Analysis:")
print(profile['missing_values'])

print("\nColumn Statistics:")
print(profile['column_stats'])

print("\nDuplicates Analysis:")
print(profile['duplicates'])

print("\nOutliers Analysis:")
print(profile['outliers'])
```

## Core Functionality

- ### Basic DataFrame Information:
    - Number of rows, columns, and total cells.
    - Memory usage of the DataFrame.
    - Data types and their counts.

- ### Missing Value Analysis:
    - Total missing values across the DataFrame.
    - Missing values by column.
    - Percentage of missing values for each column.

- ### Column-wise Analysis:

    - #### Numeric Columns:
        - Descriptive statistics (mean, median, standard deviation, etc.).
        - Skewness and kurtosis.

    - #### Categorical Columns:
        - Count of unique values.
        - Top 5 most frequent values with their percentages.

    - #### Datetime Columns:
        - Minimum and maximum values.
        - Range in days.

- ### Duplicate Detection:
    - Duplicate rows (count and percentage).
    - Duplicate columns (count and list of column names).

- ### Outlier Detection:
    - For numeric columns, detects outliers using:
        - Z-score method (with indices and percentages).
        - Interquartile Range (IQR) method (with indices and percentages).

## Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

## License

This project is licensed under the MIT License - see the LICENSE file for details.

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "data-profiler-kit",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": null,
    "keywords": "data, profiling, pandas, analytics",
    "author": null,
    "author_email": "Najm Eddine Charaf <oldcharaf@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/d1/39/016f825f54e3f518910c57d6830e9fac0c78317851e9a1a722e58605b9d3/data_profiler_kit-0.1.2.tar.gz",
    "platform": null,
    "description": "# DataProfilerKit\r\n\r\nA Python library that provides quick and insightful data profiling for pandas DataFrames. It generates detailed reports including missing values analysis, data type information, correlations, outliers, and column statistics in a clear, organized format.\r\n\r\n## Installation\r\n\r\n```bash\r\npip install data-profiler-kit\r\n```\r\n\r\n## Usage\r\n\r\n```python\r\nfrom dataprofilerkit import DataProfiler\r\nimport pandas as pd\r\n\r\n# Create or load your DataFrame\r\ndf = pd.read_csv('your_data.csv')\r\n\r\n# Create a DataProfiler instance\r\nprofiler = DataProfiler(df)\r\n\r\n# Generate the profile\r\nprofile = profiler.generate_profile()\r\n\r\n# Access different aspects of the profile\r\nprint(\"Basic Information:\")\r\nprint(profile['basic_info'])\r\n\r\nprint(\"\\nMissing Values Analysis:\")\r\nprint(profile['missing_values'])\r\n\r\nprint(\"\\nColumn Statistics:\")\r\nprint(profile['column_stats'])\r\n\r\nprint(\"\\nDuplicates Analysis:\")\r\nprint(profile['duplicates'])\r\n\r\nprint(\"\\nOutliers Analysis:\")\r\nprint(profile['outliers'])\r\n```\r\n\r\n## Core Functionality\r\n\r\n- ### Basic DataFrame Information:\r\n    - Number of rows, columns, and total cells.\r\n    - Memory usage of the DataFrame.\r\n    - Data types and their counts.\r\n\r\n- ### Missing Value Analysis:\r\n    - Total missing values across the DataFrame.\r\n    - Missing values by column.\r\n    - Percentage of missing values for each column.\r\n\r\n- ### Column-wise Analysis:\r\n\r\n    - #### Numeric Columns:\r\n        - Descriptive statistics (mean, median, standard deviation, etc.).\r\n        - Skewness and kurtosis.\r\n\r\n    - #### Categorical Columns:\r\n        - Count of unique values.\r\n        - Top 5 most frequent values with their percentages.\r\n\r\n    - #### Datetime Columns:\r\n        - Minimum and maximum values.\r\n        - Range in days.\r\n\r\n- ### Duplicate Detection:\r\n    - Duplicate rows (count and percentage).\r\n    - Duplicate columns (count and list of column names).\r\n\r\n- ### Outlier Detection:\r\n    - For numeric columns, detects outliers using:\r\n        - Z-score method (with indices and percentages).\r\n        - Interquartile Range (IQR) method (with indices and percentages).\r\n\r\n## Contributing\r\n\r\nContributions are welcome! Please feel free to submit a Pull Request.\r\n\r\n## License\r\n\r\nThis project is licensed under the MIT License - see the LICENSE file for details.\r\n",
    "bugtrack_url": null,
    "license": "MIT License  Copyright (c) 2024 Najm Eddine Charaf  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:  The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.",
    "summary": "A library to provide quick and insightful data profiling for pandas DataFrames",
    "version": "0.1.2",
    "project_urls": {
        "Homepage": "https://github.com/cnajmeddine/data-profiler"
    },
    "split_keywords": [
        "data",
        " profiling",
        " pandas",
        " analytics"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "70759a58295a86187e53feb1e617b7519cad378b726619622b2eb0890d217eb1",
                "md5": "74914ea4e7d21febe85cf5f111737ac7",
                "sha256": "977010cbe6676683a7520446da639cc23305eb2022423e3c75e412345460073c"
            },
            "downloads": -1,
            "filename": "data_profiler_kit-0.1.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "74914ea4e7d21febe85cf5f111737ac7",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 7013,
            "upload_time": "2024-11-22T15:00:52",
            "upload_time_iso_8601": "2024-11-22T15:00:52.890049Z",
            "url": "https://files.pythonhosted.org/packages/70/75/9a58295a86187e53feb1e617b7519cad378b726619622b2eb0890d217eb1/data_profiler_kit-0.1.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d139016f825f54e3f518910c57d6830e9fac0c78317851e9a1a722e58605b9d3",
                "md5": "f9fab249df9f880dfc29dc7314016fa8",
                "sha256": "03ff9258b9a558a9af2302addf38c07aeff4dd59369c4e02e4b73d831b952b66"
            },
            "downloads": -1,
            "filename": "data_profiler_kit-0.1.2.tar.gz",
            "has_sig": false,
            "md5_digest": "f9fab249df9f880dfc29dc7314016fa8",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 6470,
            "upload_time": "2024-11-22T15:00:53",
            "upload_time_iso_8601": "2024-11-22T15:00:53.856515Z",
            "url": "https://files.pythonhosted.org/packages/d1/39/016f825f54e3f518910c57d6830e9fac0c78317851e9a1a722e58605b9d3/data_profiler_kit-0.1.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-11-22 15:00:53",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "cnajmeddine",
    "github_project": "data-profiler",
    "github_not_found": true,
    "lcname": "data-profiler-kit"
}
        
Elapsed time: 0.42704s