A Python package implementing TOPSIS technique.
Project description
TOPSIS-Python
Submitted By: Abhinav Narang 101803411
How to use this package:
This package can be run as in the following example:
In Python notebook :
>>> import pandas as pd
>>> from topsis_py.topsis import topsis
>>> df = pd.read_csv('data.csv').values
>>> d = dataset[:,1:]
>>> w = [1,1,1,1]
>>> im = ["+" , "+" , "-" , "+" ]
>>> df = topsis(d,w,im)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.