https://github.com/noone03/topsis
Implementation of TOPSIS decision making
https://github.com/noone03/topsis
python3 topsis topsis-python3
Last synced: 11 months ago
JSON representation
Implementation of TOPSIS decision making
- Host: GitHub
- URL: https://github.com/noone03/topsis
- Owner: NoOne03
- License: mit
- Created: 2020-01-20T14:33:03.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-02-20T21:52:03.000Z (over 6 years ago)
- Last Synced: 2025-03-17T13:41:17.181Z (over 1 year ago)
- Topics: python3, topsis, topsis-python3
- Language: Python
- Size: 5.86 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# TOPSIS-python3
This python code saves "ordered.csv" file containing a extra column of Rank in current working directory.
PyPI Project link here
TOPSIS
Technique for Order Preference by Similarity to Ideal Solution (TOPSIS) originated in the 1980s as a multi-criteria decision making method. TOPSIS chooses the altenrative of shortest Euclidean distance from the idael solution, and fartherst distance from the negative-ideal solution.
Usage
Use below commands to install and use
- pip install topsis-csv-python3==1.0.1
- python3
>>>from topsis import topsis
>>>t = topsis.topsis([filename],[weights],[imapcts])
e.g. t = topsis.topsis("data.csv","1,2,1,1","-,+,+,+")