Metadata-Version: 2.1
Name: df-to-dictionary
Version: 0.4
Author: Nilesh Shinde
Description-Content-Type: text/markdown
License-File: LICENSE.txt


    % This module is for convert dataframe to dictionary in river dataset format %

    River is the famous online machine learning dictionary in python but it can only support dictionary as a input. For that reason we have to convert dataframe to dictionary.

    WHY DataFrame
    In this situation you might be thinking whay first we convert other formate to dataframe and then dictionary ,because pandas gives us some amazing feature for data visualization.
    For more info
    https://pandas.pydata.org/

    Function in this module

    xdata,ydata = df_to_dictionary(x_data,y_data)

    here x_data means the fetures and y_data means the labels of the dataset.
    It will returns transformed xdata and ydata


    Installation :
        Requirements:
    pandas
    numpy
    Installation :
        pip install pandas==1.5.2
        pip install numpy==1.23.5
    

    Github link
        https://github.com/Nileshshinde09/df_to_dictionary
