Title: | New Multicriteria Method: AHPGaussian |
---|---|
Description: | Implements the Analytic Hierarchy Process (AHP) method using Gaussian normalization (AHPGaussian) to derive the relative weights of the criteria and alternatives. It also includes functions for visualizing the results and generating graphical outputs. Method as described in: dos Santos, Marcos (2021) <doi:10.13033/ijahp.v13i1.833>. |
Authors: | Cid Edson Povoas [aut, cre] , Marcos dos Santos [aut] |
Maintainer: | Cid Edson Povoas <[email protected]> |
License: | GPL (>= 2) |
Version: | 0.1.2 |
Built: | 2024-11-10 04:59:53 UTC |
Source: | https://github.com/cidedson/ahpgaussian |
Analytic Hierarchy Process (AHP) is a method allowing individuals or groups to make complex decisions. The core concept of AHP is that alternatives are always compared pairwise (and not, say, by giving a score, or sorting alternatives). AHP is used in many fields, from finance to criminal investigation.
The AHP Gaussian is a modification of the AHP that uses a Gaussian function to model the pairwise comparisons between criteria and alternatives. In the traditional AHP, pairwise comparisons are made using numerical values on a scale from 1 to 9, which can be subjective and lead to inconsistencies. The AHP Gaussian addresses this issue by using a continuous function that allows for more precise and consistent comparisons.
The function is defined by a mean value and a standard deviation, which can be estimated from the pairwise comparison data. The resulting weights for the criteria and alternatives are obtained by solving a system of linear equations. The Gaussian AHP has been shown to be effective in various applications, including military decision-making and environmental management.
ahpgaussian(x)
ahpgaussian(x)
x |
A |
Values are returned from the analysis with results and graphical output
Cid Edson Povoas ([email protected])
dos Santos, M, Costa, I. P. de A., & Gomes, C. F. S. (2021) Multicriteria decision-making in the selection of warships: a new approach to the ahp method. International Journal of the Analytic Hierarchy Process, 13(1). <doi:10.13033/ijahp.v13i1.833>
## ## Example 1 ## ws <- ahpgaussian(warships) summary(ws) plot(ws)
## ## Example 1 ## ws <- ahpgaussian(warships) summary(ws) plot(ws)
An example data.frame about cellphone model characteristics
data(cellphones)
data(cellphones)
The format is:
'data.frame': 5 obs. of 5 variables:
$ criteria: chr "Price" "Camera" "Storage" "Battery Life" ...
$ Xiaomi : int 1500 12 64 24 94
$ Samsung : int 1800 12 128 18 120
$ iPhone : int 5000 20 128 10 117
$ min_max : chr "min" "max" "max" "max" ...
# Description
#
criteria: Statement of the goal, decision criteria and alternatives.
Xiaomi: Xiaomi model;
Samsung: Samsung model; or
iPhone: iPhone model.
min_max: Weights of criteria and alternatives.
data(cellphones) cellphones
data(cellphones) cellphones
These are methods for objects of class ahpgaussian
.
## S3 method for class 'ahpgaussian' plot(x, ...)
## S3 method for class 'ahpgaussian' plot(x, ...)
x |
A given object of the class |
... |
Other graphical parameters may also be passed as arguments to these functions. |
Cid Edson Povoas ([email protected])
dos Santos, M, Costa, I. P. de A., & Gomes, C. F. S. (2021) Multicriteria decision-making in the selection of warships: a new approach to the ahp method. International Journal of the Analytic Hierarchy Process, 13(1). <doi:10.13033/ijahp.v13i1.833>
## ## Example 1 ## ahpgaussian ## # ahpgaussian cp <- ahpgaussian(cellphones) plot(cp)
## ## Example 1 ## ahpgaussian ## # ahpgaussian cp <- ahpgaussian(cellphones) plot(cp)
Returns (and prints) a summary list for ahpgaussian
) objects.
## S3 method for class 'ahpgaussian' summary(object, presentation=FALSE, ...)
## S3 method for class 'ahpgaussian' summary(object, presentation=FALSE, ...)
object |
A given object of the class |
presentation |
Logic.
If |
... |
Potential further arguments (require by generic). |
Cid Edson Povoas ([email protected])
dos Santos, M, Costa, I. P. de A., & Gomes, C. F. S. (2021) Multicriteria decision-making in the selection of warships: a new approach to the ahp method. International Journal of the Analytic Hierarchy Process, 13(1). <doi:10.13033/ijahp.v13i1.833>
## ## Example 1 ## ahpgaussian ## # ahpgaussian cp <- ahpgaussian(cellphones) summary(cp)
## ## Example 1 ## ahpgaussian ## # ahpgaussian cp <- ahpgaussian(cellphones) summary(cp)
A data.frame Decision Matrix of the data used Santos (2021), the first column lists the criteria, while the next three columns represent the alternatives and the last column represents the objective choice between minimum and maximum for a given criterion. Each model corresponds to an alternative of ship, classified according to its respective criteria.
data(warships)
data(warships)
The format is:
'data.frame': 9 obs. of 5 variables:
criteria: chr "Action Radius" "Fuel Endurance" "Autonomy" "Primary Cannon" ...
model_1 : num 4000 11 30 25 1 0 290 592 6
model_2 : num 9330 26 25 25 2 1 310 633 8
model_3 : num 10660 30 35 120 2 ...
min_max : chr "max" "max" "max" "max" ...
#
# Description
#
criteria: Statement of the goal, decision criteria and alternatives.
model_1: Replicate the current Corvette Barroso;
model_2: Build a slightly modernized ship (2.600 ton corvette); or
model_3: Build a model with more significant modernizations (3.000 ton corvette).
min_max: Weights of criteria and alternatives.
dos Santos, M, Costa, I. P. de A., & Gomes, C. F. S. (2021) Multicriteria decision-making in the selection of warships: a new approach to the ahp method. International Journal of the Analytic Hierarchy Process, 13(1). <doi:10.13033/ijahp.v13i1.833>.
data(warships) warships
data(warships) warships