Key Concept TOPSIS(Technique for Order of Preference by Similarity to Ideal Solution)是一种决策分析方法,其核心思想是选择同时距离理想解最近和距离负理想解(最差解)最远的方案。
将各指标数据正向化
#将极小型数据转化为极大型数据
def minToMax(maxx,x):
x=list(x)
ans=[]
for i in range(len(x)):
ans.append(maxx-x[i])
return ans
#将中间型数据转化为极大型数据
def midToMax(bestx,x):
x=list(x)
ans=[]
h=[]
#计算列表中每个元素与最优值的差的绝对值
for i in range (len(x)):
h.append(abs(bestx-x[i]))
M=max(h)#计算最大值,用来归一化
if M==0:
M=1#防止除0错误
#计算每个元素的极大型值
for i in range(len(x)):
ans.append(1-h[i]/M)
return np.array(ans)
#将区间型数据转化为极大型数据
def intervalToMax(x,lowx,highx):
x=list(x)
ans=[]
for i in range(len(x)):
if x[i]>=lowx and x[i]<=highx:
ans.append(1)
elif x[i]<lowx:
ans.append(1-(lowx-x[i])/(lowx-min(x)))
elif x[i]>highx:
ans.append(1-(x[i]-highx)/max(x)-highx)
return np.array(ans)
4.统一指标类型
确定理想解和负理想解:
计算方案与理想解及负理想解的距离:
计算相对接近度:
排列备选方案: