Topsis Package for solving MCDM Problems
Project description
TOPSIS Package
Submitted by:
Name: YUVRAJ KALSI
Roll No: 102017081
Group: 3CS4
Topsis-Yuvraj-102017081 is a python library which uses technique called TOPSIS (Technique for Order of Preference by Similarity to Ideal Solution) to solve Multiple-Criteria Decision Making (MCDM) problems.
Installation
Install this package in the system using pip command.
pip install Topsis-Yuvraj-102017081
Usage
- Import the installed library using the following command.
import Topsis
You can import it using the first word coming before hypen (-) in library's name as shown above.
- Enter the three parameters in three lines:
- .csv filename, followed by .csv extension
- values of weights, each separated by comma(,)
- values of impacts, either '+' or '-', each separated by comma(,)
sample.csv
0.25,0.25,0.25,0.25
-,+,+,+
Example of input & output
Input:
- sample.csv file, depicts the dataset of mobile phones having varying features.
| Model | Price (in $) | Storage Space (in GB) | Camera (in MP) | Looks |
|---|---|---|---|---|
| M1 | 250 | 16 | 12 | Excellent |
| M2 | 200 | 16 | 8 | Average |
| M3 | 300 | 32 | 16 | Good |
| M4 | 275 | 32 | 8 | Good |
| M5 | 225 | 16 | 16 | Below Average |
- weights = [0.25,0.25,0.25,0.25]
- impacts = [-,+,+,+]
Output:
| Model | Price (in $) | Storage Space (in GB) | Camera (in MP) | Looks | Topsis Score | Rank |
|---|---|---|---|---|---|---|
| M1 | 250 | 16 | 12 | Excellent | 0.526983 | 3 |
| M2 | 200 | 16 | 8 | Average | 0.190599 | 5 |
| M3 | 300 | 32 | 16 | Good | 0.809401 | 1 |
| M4 | 275 | 32 | 8 | Good | 0.688168 | 2 |
| M5 | 225 | 16 | 16 | Below Average | 0.422630 | 4 |
Important Points
- The first column is not considered while solving the MCDM Problem. Make sure the csv file follows the format as shown in sample.csv.
- Any column (from 2nd to last) containing categorical values is converted into numeric column using Label Encoding Technique.
License
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file Topsis_Yuvraj_102017081-1.1.2-py3-none-any.whl.
File metadata
- Download URL: Topsis_Yuvraj_102017081-1.1.2-py3-none-any.whl
- Upload date:
- Size: 4.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a7f85c60145d77bf4164919e2a7121ce1a117c1743f3725b6bfd0ed8ea6f9270
|
|
| MD5 |
2206034d6864f878fb0edf5ef80cdccd
|
|
| BLAKE2b-256 |
249109019a23b87c9194c1514e3f6b37a1cb19e038002573a6c36f8d4be30135
|