Metadata-Version: 2.1
Name: TOPSIS-kartikey-101803606
Version: 1.0.0
Summary: TOPSIS Score Calculator
Home-page: UNKNOWN
Author: Kartikey Nigam
Author-email: knigam_be18@thapar.edu
License: MIT
Description: 
         ## TOPSIS-kartikey-101803606
        
        **Assignment - 6 : UCS538**
        Submitted By: **KARTIKEY NIGAM 101803606**
        
        ***
        <br>
        ## How to use this package:
        
        The package TOPSIS-kartikey-101803606 can be installed as follows:
        ```
        >> pip install TOPSIS-kartikey-101803606
        ```
        To run on command line do as follows:
        ```
        >> python
        >>>from topsis_kartikey.topsis import topsis
        >>>topsis("data.csv", "1,1,1,2", "+,+,-,+", "output.csv")
        ```
        # Here, data.csv file represents the input file and output.csv represents output file
        <br>
        
        # Also, weights are given as "1,1,1,2" and impacts are given as "+,+,-,+"
        <br>
        ## Sample Input
        
        This is a sample data input:
        
        <table><thead><tr><th>Model</th><th>Performance Score</th><th>Rank</th></tr></thead><tbody><tr><td>1</td><td>0.79</td><td>0.62</td><td>1.25</td><td>60.89</td></tr><tr><td>M2</td><td>0.66</td><td>0.44</td><td>2.89</td><td>63.07</td></tr><tr><td>M3</td><td>0.56</td><td>0.31</td><td>1.57</td><td>62.87</td></tr><tr><td>M4</td><td>0.82</td><td>0.67</td><td>2.68</td><td>70.19</td></tr><tr><td>M5</td><td>0.75</td><td>0.56</td><td>1.3</td><td>80.39</td></tr></tbody></table>
        
        ## Output of this sample input
        
        The output that will be generated from the following input data will be:
        ```
           Model  Performance Score  Rank
        0      1           0.639133     2
        1      2           0.212592     5
        2      3           0.407846     4
        3      4           0.519153     3
        4      5           0.828267     1
        ```
        
        
        Here the ranks are given as rank 1 is the best solution according to the weights and impacts given and rank 5 is the worst solution.
        
        * * *
Keywords: TOPSIS
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Description-Content-Type: text/markdown
