I would like to use the Weighted Sum Method (Multi Criteria Decision Making) in R in this database below. The resolution of the issue is here: Weighted Sum Method - Multi Criteria Decision Making - GeeksforGeeks
I tried using something similar as done here: weightedSum: Weighted sum of evaluations of alternatives. in MCDA: Support for the Multicriteria Decision Aiding Process, however the result was not right.
df1<- structure(list(Student = c("Student1", "Student2", "Student3", "Student4", "Student5"),
CGPA = c(9, 7.6, 8.2, 8.5, 9.3),
`Expected Stipend` = c(12000L, 8500L, 9500L, 10000L, 14000L),
`Technical Exam Score` = c(72L, 68L, 63L, 70L, 72L),
`Aptitude Test Grade` = c("B1", "B1", "B2", "A2", "A2")),
class = "data.frame", row.names = c(NA, -5L))
> df1
Student CGPA Expected Stipend Technical Exam Score Aptitude Test Grade
1 Student1 9.0 12000 72 B1
2 Student2 7.6 8500 68 B1
3 Student3 8.2 9500 63 B2
4 Student4 8.5 10000 70 A2
5 Student5 9.3 14000 72 A2