Skip to main content

A Python library for the TOPSIS decision-making method.

Project description

TOPSIS Library

Overview

The TOPSIS (Technique for Order Preference by Similarity to Ideal Solution) library provides an implementation of the TOPSIS decision-making method. This technique is used to rank alternatives based on multiple criteria by comparing their distance from an ideal best and an ideal worst solution.

Features

  • Normalize decision matrices
  • Apply weights and impacts to criteria
  • Calculate rankings and performance scores

Installation

Install the library via pip:

pip install topsis-library

Usage

Here’s a quick guide to using the library:

from topsis.topsis import topsis

# Define the decision matrix
# Each row is an alternative, and each column is a criterion
data = [
    [250, 16, 12, 5],
    [200, 16, 8, 3],
    [300, 32, 16, 4],
    [275, 32, 8, 4],
    [225, 16, 16, 2]
]

# Define weights for each criterion
weights = [0.25, 0.25, 0.25, 0.25]

# Define impacts for each criterion ('+' for benefit, '-' for cost)
impacts = ['+', '+', '-', '+']

# Calculate rankings and scores
rankings, scores = topsis(data, weights, impacts)

print("Rankings:", rankings)
print("Scores:", scores)

Output Example

Rankings: [3, 1, 4, 2, 5]
Scores: [0.7722, 0.5634, 0.8523, 0.6472, 0.4321]

How It Works

  1. Normalization: The decision matrix is normalized to make criteria comparable.
  2. Weight Application: Each criterion is weighted to reflect its importance.
  3. Ideal Solutions: The algorithm calculates the ideal best and worst values for each criterion.
  4. Distance Calculation: Distances from the ideal best and worst solutions are computed.
  5. Performance Scores: Scores are calculated based on proximity to the ideal solutions.
  6. Ranking: Alternatives are ranked based on their scores.

Testing

Run unit tests to ensure functionality:

python -m unittest discover tests

Author

Raghav Manchanda

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

102203162_topsis-0.2.0.tar.gz (2.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

102203162_topsis-0.2.0-py3-none-any.whl (2.1 kB view details)

Uploaded Python 3

File details

Details for the file 102203162_topsis-0.2.0.tar.gz.

File metadata

  • Download URL: 102203162_topsis-0.2.0.tar.gz
  • Upload date:
  • Size: 2.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.4

File hashes

Hashes for 102203162_topsis-0.2.0.tar.gz
Algorithm Hash digest
SHA256 ca911369c76c19f25398b977a17b53815ede6a5193d34ad8310c33c19f64207b
MD5 4283bed2bccb3c93d08ac272f9fde2e0
BLAKE2b-256 409315a877d6a956d53fd236ae409df8cb7a36a5b57f6230ac933760b295254c

See more details on using hashes here.

File details

Details for the file 102203162_topsis-0.2.0-py3-none-any.whl.

File metadata

File hashes

Hashes for 102203162_topsis-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 e968f3a481b9cfc62ef91e6683720ba0a24aee6828eeb52d34417edb6578c3a5
MD5 b3e5f7dccdd0c5f7ceccc35cb9dcf6e0
BLAKE2b-256 7ad1b7683304af2a2fee54de4ae6d57d3adb989301e8e9009e3195098c8768cb

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page