Metadata-Version: 1.1
Name: categorical_encode
Version: 0.1
Summary: This Library converts categorical data of any kind {integer, float, strings} into discrete values{1,2,3... # Classes}.
Home-page: https://github.com/nikhilkala/Categorical-Encode
Author: Nikhil Kala
Author-email: nikhilkala8@gmail.com
License: MIT
Download-URL: https://github.com/nikhilkala/Categorical-Encode/archive/v0.1.tar.gz
Description:   This package can be used to convert dataset into numerical categorical data.
        This can be utilized for the pre-processing of various kinds of data for many Machine Learning Models. There are various features available such as normalizing the data to make the data more useful for the model. This function will work on any kind of data in the DataFrame.
        
        
        **IMPORT:**
        
        
        
        
        from categorical_encode.categorical import categorical
        
        
        
        
        **The Parameters:-**
        
        
        - **dataframe**: The Input DataFrame(X) which you want to categorically encode.
        - **normalize**: This parameter determines if it will be between 0-1(1 included) or 1 to no. of classes (1 - no. of classes). default:False
        - **drop_columns**:  This specifies the dataframe columns that need to be dropped as they are useless. default: No Columns
        - **drop_na**: This drops empty values (NaN) if is set to True. default: False
        - **target_columns**: This creates the target DataFrame(Y) without applying any Encoding. default: No Columns
        
        **Return**
        
        This Returns Two DataFrame (X,Y) if target_columns are provided Else only the Input dataframe (X) which is encoded.
        
        **Example:**
        
        from categorical_encode.categorical import categorical
        
        df = categorical(dataframe = df, normalize= True)
        
        
        This returns df as categorically encoded column-wise for all the columns having values between 0-1(1 included).
        
Keywords: Machine Learning,Categorical Data,Encoding,Deep Learning,Pandas,DataFrame,Normalization
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
