Metadata-Version: 2.1
Name: topsisGod
Version: 0.0.2
Summary: Calculation of Topsis Score
Home-page: UNKNOWN
Author: Sahil Chhabra
Author-email: sahil.chh718@gmail.com
License: UNKNOWN
Description: # Topsis Score Calculation package
        
        >from topsis import topsis
        
        Input: Three parameters
        
        1. data: data should contain only integer fields so preprocess the data and temporarily remove the model names
        2. Weights: weight of each attribute, considered to be an integer list
        3. Impact: Considered to be a character list
        
        Weight = [1, 1, 1, 1]
        
        Impact = ['+', '-', '-', '+']
        
        Output: Returns the score of each row
        
        To calculate the rank based on the score, append the score list as:
        
        >data['Score'] = topsis(data, w, i)
        
        >data['Rank'] = data['Score'].rank(method = 'max', ascending = False)
Platform: UNKNOWN
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
