Metadata-Version: 2.1
Name: Topsis-AnanyaAga-102083036
Version: 0.5
Summary: A Python package to find TOPSIS for multi-criteria decision analysis method
Home-page: UNKNOWN
Author: Ananya Agarwal
Author-email: aagarwal3_be19@thapar.edu
License: MIT
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Operating System :: Microsoft :: Windows :: Windows 10
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Requires-Dist: pandas
Requires-Dist: tabulate

Project Description
Topsis Value Calculator
Submitted by: Ananya Agarwal (102083036)

Topsis_AnanyaAga_102083036 is a Python package, implementing Topsis method for multi-criteria decision analysis.
Topsis stands for Technique for Order of Preference by Similarity to Ideal Solution.
Just provide your input attributes and it will give you the results 

Installation

>>> import Topsis_AnanyaAga_102083036 as tp
>>> import pandas as pd
>>> df = pd.read_csv("pass the input file here")
>>> weights = "1,1,0.5,2,1"
>>> impacts = "+,+,-,+,-"
>>> output_df = tp.topsis(df, weights, impacts)

Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change. 

License
MIT


