You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
as a sub type of MCDMResult. The topsis method takes a DataFrame as input and returns multiple entities including the bestIndex and scores. bestIndex indicates the index of the best alternative which corresponds to the maximum score.
Each single method implemented is tested in the runtest.jl file. For instance, the code
tests topsis for a single dataset. df is a dataset with criteria x, y, z, and q and three alternatives. It seems the method must return the alternative 2 as the best one with score of 0.6503238. These test results will be referenced soon.
If you want to implement new methods, please
Open a new issue and please define which method you want to implement and give some details
Please clarify the implementation details.
If the community decision is okay
Please fork the repository
Send you pull request
Documentation
Please follow the src/topsis.jl file for the documentation format.
That's all!
The text was updated successfully, but these errors were encountered:
The package implements the abstract type
for return types of the MCDM tools. For example, the method
topsis
returns aTopsisResult
, which is defined asas a sub type of
MCDMResult
. The topsis method takes aDataFrame
as input and returns multiple entities including thebestIndex
andscores
.bestIndex
indicates the index of the best alternative which corresponds to the maximum score.Each single method implemented is tested in the
runtest.jl
file. For instance, the codetests topsis for a single dataset. df is a dataset with criteria x, y, z, and q and three alternatives. It seems the method must return the alternative 2 as the best one with score of 0.6503238. These test results will be referenced soon.
If you want to implement new methods, please
If the community decision is okay
Documentation
That's all!
The text was updated successfully, but these errors were encountered: