Metadata-Version: 2.1
Name: topsisGod
Version: 0.0.9
Summary: Calculation of Topsis Score
Home-page: UNKNOWN
Author: Sahil Chhabra
Author-email: sahil.chh718@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

# Topsis Score Calculation package

>pip install topsisGod

>from topsisGod 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:

>score = topsis(data, w, i)

>from topsisGod import rerank

>rerank(data,score)

Github link : [GitHub]("https://github.com/Sahil-Chhabra-09/TOPSIS-Package")

