Implementation of Topsis
Project description
Project Description
- for: Assignment-1(UCS654)
- Submitted by: Himanshu Bansal
- Roll no: 102103568
- Group: 3COE20
TOPSIS (Technique for Order of Preference by Similarity to Ideal Solution)
This Python script implements the TOPSIS method for multi-criteria decision-making. It takes a CSV file containing a decision matrix, weights, and impacts as input, and produces a ranked result based on the TOPSIS score.
Installation
pip install Topsis-Himanshu-102103568
Usage
from Topsis_Himanshu_102103568.topsis import topsis
inputFile="sample.csv"
weights="1,1,1,1"
impacts="-,+,+,+"
resultFile="result.csv"
topsis(inputFile, weights, impacts, resultFile)
OR
You can use this package via command line as:
python -m Topsis_Himanshu_102103568.topsis [InputDataFile as .csv] [Weights as a string] [Impacts as a string] [ResultFileName as .csv]
InputDataFile: Path to the CSV file containing the input data.Weights: Comma-separated weights for each criterion.Impacts: Comma-separated impact direction for each criterion (+for maximization,-for minimization).ResultFileName: Name of the file to save the TOPSIS results.
Requirements
- Python 3
- pandas
- numpy
Input File Format
The input data should be in a CSV format with the following structure:
| Fund Name | P1 | P2 | P3 | P4 | P5 |
|---|---|---|---|---|---|
| M1 | 0.84 | 0.71 | 6.7 | 42.1 | 12.59 |
| M2 | 0.91 | 0.83 | 7 | 31.7 | 10.11 |
| M3 | 0.79 | 0.62 | 4.8 | 46.7 | 13.23 |
| M4 | 0.78 | 0.61 | 6.4 | 42.4 | 12.55 |
| M5 | 0.94 | 0.88 | 3.6 | 62.2 | 16.91 |
| M6 | 0.88 | 0.77 | 6.5 | 51.5 | 14.91 |
| M7 | 0.66 | 0.44 | 5.3 | 48.9 | 13.83 |
| M8 | 0.93 | 0.86 | 3.4 | 37 | 10.55 |
Output
The script generates a CSV file containing the TOPSIS score and rank for each object:
| Fund Name | P1 | P2 | P3 | P4 | P5 | Topsis Score | Rank |
|---|---|---|---|---|---|---|---|
| M1 | 0.84 | 0.71 | 6.7 | 42.1 | 12.59 | 0.41855328299643013 | 7.0 |
| M2 | 0.91 | 0.83 | 7.0 | 31.7 | 10.11 | 0.4663977143091959 | 5.0 |
| M3 | 0.79 | 0.62 | 4.8 | 46.7 | 13.23 | 0.5374784843237046 | 3.0 |
| M4 | 0.78 | 0.61 | 6.4 | 42.4 | 12.55 | 0.4295182212044884 | 6.0 |
| M5 | 0.94 | 0.88 | 3.6 | 62.2 | 16.91 | 0.5453066145383307 | 2.0 |
| M6 | 0.88 | 0.77 | 6.5 | 51.5 | 14.91 | 0.39814192807166954 | 8.0 |
| M7 | 0.66 | 0.44 | 5.3 | 48.9 | 13.83 | 0.4743648907682155 | 4.0 |
| M8 | 0.93 | 0.86 | 3.4 | 37.0 | 10.55 | 0.6392872727749049 | 1.0 |
Error Handling
- If the input file is not found, an error message will be displayed.
- If the number of weights, impacts, or columns in the decision matrix is incorrect, a
ValueErrorwill be raised. - If the columns from the 2nd to the last do not contain numeric values, a
ValueErrorwill be raised. - Any unexpected errors during the execution will be displayed.
LICENSE
(c) 2024 Himanshu Bansal
This project is licensed under the MIT 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 Distribution
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-Himanshu-102103568-1.0.3.tar.gz.
File metadata
- Download URL: Topsis-Himanshu-102103568-1.0.3.tar.gz
- Upload date:
- Size: 4.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
545422ada9f437fca07116ca28245b51fb00922d88f8d498e39d652ae728e498
|
|
| MD5 |
dfba7a7ffaaece68880367639eea727f
|
|
| BLAKE2b-256 |
5ee5f92df4ff49b0f6b34d5ed4c4118b66952d37fc920d479a5a809928f1a5b9
|
File details
Details for the file Topsis_Himanshu_102103568-1.0.3-py3-none-any.whl.
File metadata
- Download URL: Topsis_Himanshu_102103568-1.0.3-py3-none-any.whl
- Upload date:
- Size: 5.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7e473daa88ec2da2caae77f7092d369f42b1184133177d9c8da4e16e66e85652
|
|
| MD5 |
46b2ad64413ad26948b6dba6f71f3241
|
|
| BLAKE2b-256 |
ea7b947c8f9e74d61f55fc95fd80a306f47dd76ff98a70373c38f41be5142c1c
|