Metadata-Version: 2.1
Name: revamp
Version: 0.0.8
Summary: Data pre-processing
Home-page: UNKNOWN
Author: Ajeet Rai
Author-email: ajeetrai2293@gmail.com
License: MIT
Description: # Revamp
        A python library that helps in data preparation. Data cleansing steps like missing values imputation, encoding, one-hot encoding, and scaling can be performed by using this library.
        
        ### Installation
        ```
        pip install revamp
        ```
        
        ### Get started
        Prepare your tabular data for statistical analysis or predictive modeling.
        
        ```Python
        from revamp import DataPreperation
        
        # Instantiate object
        transformation = DataPreperation()
        
        # Call the object method
        print(transformation.Transform(X=train, cleansing_step="all"))
        ```
        
        Change Log
        ==========
        
        1.0.0 (30/10/2021)
        -------------------
        - First Release
        
Keywords: data cleansing
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Operating System :: Microsoft :: Windows :: Windows 10
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
