TOPSIS
Code by: Sheramir
## What is TOPSIS
TOPSIS stands for ‘The Technique for Order of Preference by Similarity to the Ideal Solution’ is a multi-criteria decision analysis(MCDA) method. It is a method of compensatory aggregation that compares a set of alternatives by identifying weights for each criterion, normalising scores for each criterion and calculating the geometric distance between each alternative and the ideal alternative, which is the best score in each criterion.
How to run
Before running, make sure you have pandas installed on your system
Open Terminal and input the following commands
pip install TOPSIS_Sheramir_101803549
To get started quickly, just use the following:
from TOPSIS_Sheramir_101803549.topsis import topsis
topsis('inputfilename','Weights','Impacts','Outputfilename')
make ensure the weights and impacts should be in ""
eg: "1,1,1,1" and "+,-,+,-"
Pre-requisite
The data should be enclosed in the csv file. There must be more than 2 columns
Result
the output(outputfilename) is saved in the project folder with extra 2 columns with topsis score and rank.
Sample Input
This input was used to test the module
| Model | Corr | Rseq | RMSE | Accuracy |
|---|---|---|---|---|
| M1 | 0.79 | 0.62 | 1.25 | 60.89 |
| M2 | 0.66 | 0.44 | 2.89 | 63.07 |
| M3 | 0.56 | 0.31 | 1.57 | 62.87 |
| M4 | 0.82 | 0.67 | 2.68 | 70.19 |
| M5 | 0.75 | 0.56 | 1.3 | 80.39 |
Output
| Model | Corr | Rseq | RMSE | Accuracy | Topsis Score | Rank |
|---|---|---|---|---|---|---|
| M1 | 0.79 | 0.62 | 1.25 | 60.89 | 0.639133 | 2.0 |
| M2 | 0.66 | 0.44 | 2.89 | 63.07 | 0.212592 | 5.0 |
| M3 | 0.56 | 0.31 | 1.57 | 62.87 | 0.407846 | 4.0 |
| M4 | 0.82 | 0.67 | 2.68 | 70.19 | 0.519153 | 3.0 |
| M5 | 0.75 | 0.56 | 1.3 | 80.39 | 0.828267 | 1.0 |
License
© 2020 Sheramir
This repository is licensed under the MIT license. See LICENSE for details.
Release files for TOPSIS-Sheramir-101803549 1.0.1
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| TOPSIS_Sheramir_101803549-1.0.1.tar.gz | 3.2 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| TOPSIS_Sheramir_101803549-1.0.1-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 7.7 kB
Release files / TOPSIS_Sheramir_101803549-1.0.1.tar.gz
| Download URL | TOPSIS_Sheramir_101803549-1.0.1.tar.gz |
|---|---|
| Size | 3.2 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
52b668732dff3281ac3b3b4266d506e1fcc13199f6dc1ec4674f9f8fac9c2ce0
|
|
BLAKE2b-256 checksum How to use checksums |
fc1d1f2c81d34c4c849c7f20833bd3e25b72100dba5b3746e46b6caf5487563e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.7.3
|
Release files / TOPSIS_Sheramir_101803549-1.0.1-py3-none-any.whl
| Download URL | TOPSIS_Sheramir_101803549-1.0.1-py3-none-any.whl |
|---|---|
| Size | 4.6 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
2da41b190c9c7014cde1ef35f3f87ee7ce2f571532bd65a4f13a195de6ccc4bf
|
|
BLAKE2b-256 checksum How to use checksums |
54677cfd30a9469a5e0e21fa138d4d84cbfbb618af34bdff02af7fff28e01416
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.7.3
|