Skip to main content

This package performs the topsis(multiple criterion decision making) on a pandas dataframe and return the rank and topsis score.

Project description

Topsis

This is a python library which implements topsis.Topsis is a technique which is used for Multiple Criteria Decision Making(MCDM). It takes weights and impacts of criteria does the decision making by calculating the similarity to ideal solution.

Installation

Use the package manager pip to install the package

pip install Topsis_Keshav_Garg_102017064

Import

from Topsis_Keshav_Garg_102017064 import topsis

Usage

topsis module has a function names get_score which takes 3 arguements as:

  1. dataframe - It is a pandas dataframe which has atleast 3 columns(including the first column with names). It should only have numerical values. Any non-numerical value should be encoded before passing it to function.
  2. weights - It is a string of comma(,) separated numbers which tell the weight of each criteria.
  3. impacts - It is a string of comma(,) separated + and - sign showing the impact of criteria on decision making.

The function return the original pandas dataframe with 2 more columns added, which are Topsis Score and Rank.

topsis.get_score(dataframe,weights,impacts)

Example

test.csv (Input):

mobile ram memo display battery price
a 4 128 6.5 3500 15000
b 6 64 6.4 3800 16000
c 6 128 6.8 4200 19000
d 8 256 7 5000 25000
e 3 64 6.2 4000 14000
from Topsis_Keshav_Garg_102017064 import topsis
import pandas as pd
df = pd.read_csv('./test.csv')
weights = "+,+,+,+,-"
impacts = "1,1,1,1,1"
print(topsis.get_score(df,weights,impacts))

Output:

mobile ram memo display battery price Topsis Score Rank
0 a 4 128 6.5 3500 15000 0.379477 3
1 b 6 64 6.4 3800 16000 0.341963 4
2 c 6 128 6.8 4200 19000 0.439078 2
3 d 8 256 7.0 5000 25000 0.729791 1
4 e 3 64 6.2 4000 14000 0.276912 5

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

Topsis_Keshav_Garg_102017064-0.0.1.tar.gz (5.8 kB view details)

Uploaded Source

Built Distribution

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

Topsis_Keshav_Garg_102017064-0.0.1-py3-none-any.whl (4.6 kB view details)

Uploaded Python 3

File details

Details for the file Topsis_Keshav_Garg_102017064-0.0.1.tar.gz.

File metadata

File hashes

Hashes for Topsis_Keshav_Garg_102017064-0.0.1.tar.gz
Algorithm Hash digest
SHA256 0403519bbdda42e8d230b3057291ee823468918fa045878044e2271209091732
MD5 7db3f0c71e7820d336ca2d262dfa9e84
BLAKE2b-256 0ae85f9303ad35e40436868bf44406cd4532aab2fcba8a69e73cc023e9cd7d6c

See more details on using hashes here.

File details

Details for the file Topsis_Keshav_Garg_102017064-0.0.1-py3-none-any.whl.

File metadata

File hashes

Hashes for Topsis_Keshav_Garg_102017064-0.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 ea9971ece01ead39d5b6449d64f4122dcfc220e23035e728da9ba5e99f74221c
MD5 f77f52e41196478ac3c9079d1a89daf3
BLAKE2b-256 e791b2f56914434613439ce765f6aefaea3bb9a4384f3c593f57ada15ec81b48

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