zoukankan      html  css  js  c++  java
  • Topsis法的python实现

    TOPSIS (Technique for Order Preference by Similarity to an Ideal Solution )法是C.L.Hwang和K.Yoon于1981年首次提出,TOPSIS法根据有限个评价对象与理想化目标的接近程度进行排序的方法,是在现有的对象中进行相对优劣的评价。
    以往的topsis往往在excel中进行计算,但是如果涉及到多时空比较的话,需要计算多次Topsis,因此编程实现比较实用。
    def topsis(year,bigc,filefullname):
        topsis={}
        topsis[year]={}
        f=open(filefullname,'a+')
        for cnty in alhdata['cnty']:
            topsis[year][cnty]={}
        for index,row in alhdata[(alhdata['year']==year)&(alhdata['alh']==bigc)].iterrows():
            topsis[year][row['cnty']][row['type']]=row['weight']
        datalist=[]
        for key in topsis[year]:
            datalist.append(topsis[year][key])
        newdata=pd.DataFrame(datalist)
        data2 = (newdata-newdata.min())/(newdata.max()-newdata.min())
        data2=data2.fillna(0)
        collist=list(data2.columns)
        wlist=[(np.std(data2[col])/np.mean(data2[col])) for col in collist]
        best=[data2[col].max() for col in collist]
        worst=[data2[col].min() for col in collist]
        datagood=pd.DataFrame()
        databad=pd.DataFrame()
        for col in collist:
            colindex=collist.index(col)
            datagood[col]=wlist[colindex]*(best[colindex]-data2[col])*(best[colindex]-data2[col])
            databad[col]=wlist[colindex]*(-worst[colindex]+data2[col])*(-worst[colindex]+data2[col])
        for key in topsis[year]:
            index=list(topsis[year].keys()).index(key)
            djia=datagood.iloc[index,:].sum()
            djian=databad.iloc[index,:].sum()
            c=djian/(djia+djian)
            print(year,key,bigc,c,file=f)
        f.close()
        print(year,bigc)
  • 相关阅读:
    九个令人兴奋的新功能将与Java 9 展示两点
    自学前端开发 新版css时钟效果图
    自学前端,你要的学习资料到了~~~~~~
    Angularjs中ng-repeat与移动端滑动插件iScroll的冲突
    计蒜客学习记录
    明明的随机数
    模板题
    泉州一中复赛模拟
    快速幂模板
    NOIP2013
  • 原文地址:https://www.cnblogs.com/oikoumene/p/12916621.html
Copyright © 2011-2022 走看看