Giter Site home page Giter Site logo

topsis_102017182's Introduction

Topsis_102017182

Topsis

Technique for Order Preference by Similarity to Ideal Solution (TOPSIS)

In a general sense, it is the aspiration of human being to make "calculated" decision in a position of multiple selection. In scientific terms, it is the intention to develop analytical and numerical methods that take into account multiple alternatives with multiple criteria. TOPSIS (Technique for Order Preference by Similarity to Ideal Solution) is one of the numerical methods of the multi-criteria decision making

Installation

Use the package manager pip to install the package

pip install Topsis_102017182_sandhya_goyal

Import

from Topsis_102017182_sandhya_goyal 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

data.csv (Input):

contestent sur tal lah pitch sharpness
a 4 18 6.5 35 15
b 6 14 4 38 19
c 6 12 5 42 20
d 8 26 7 50 25
e 3 14 6 40 14
import pandas as pd
df = pd.read_csv('data.csv')
weights = "+,+,+,+,+"
impacts = "1,1,1,1,1"
print(topsis.get_score(df,weights,impacts))

Output:

contestent sur tal lah pitch sharpness output
a 4 18 6.5 35 15 3
b 6 14 4 38 19 4
c 6 12 5 42 20 2
d 8 26 7 50 25 1
e 3 14 6 40 14 5

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.