You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Takes a complete pandas dataframe and it converts every categorical variable into integers and
resumes its hashing values for each categorical column and returns a tuple with dataframe and hashmap
Method Structure:
.. code-block:: python
def encode(data):
''' Your code goes here '''
return data
Parameters:
data : pandas dataframe
Enter the pandas dataframe as first input
Usage:
.. code-block:: python
>> p = process()
>> p.encode(pd.DataFrame()
>> <pandas.dataframe>
The text was updated successfully, but these errors were encountered:
Encode:
Takes a complete pandas dataframe and it converts every categorical variable into integers and
resumes its hashing values for each categorical column and returns a tuple with dataframe and hashmap
Method Structure:
.. code-block:: python
Parameters:
Usage:
.. code-block:: python
The text was updated successfully, but these errors were encountered: