python 在zillow中重命名列

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 在zillow中重命名列相关的知识,希望对你有一定的参考价值。

data = data.rename(columns=
                   {'parcelid':'id_parcel',
                    'yearbuilt': 'build_year',
                    'basementsqft': 'area_basement',
                   'yardbuildingsqft17' : 'area_patio',
                   'yardbuildingsqft26' : 'area_shed',
                   'poolsizesum': 'area_pool',
                   'lotsizesquarefeet': 'area_lot',
                   'garagetotalsqft': 'area_garage',
                   'finishedfloor1squarefeet' : 'area_firstfloor_finished',
                   'calculatedfinishedsquarefeet' : 'area_total_calc',
                   'finishedsquarefeet6': 'area_base',
                    'finishedsquarefeet12': 'area_live_finished',
                    'finishedsquarefeet13': 'area_liveperi_finished',
                    'finishedsquarefeet15': 'area_total_finished',
                    'finishedsquarefeet50': 'area_unknown',
                    'unitcnt': 'num_unit',
                    'numberofstories': 'num_story',
                    'roomcnt':'num_room',
                    'bathroomcnt': 'num_bathroom',
                    'bedroomcnt': 'num_bedroom',
                    'calculatedbathnbr': 'num_bathroom_calc',
                   'fullbathcnt' : 'num_bath',  
                    'threequarterbathnbr' : 'num_75_bath',
                    'fireplacecnt' : 'num_fireplace',
                     'poolcnt' : 'num_pool',   
                     'garagecarcnt' : 'num_garage',  
                     'regionidcounty': 'region_county',
                     'regionidcity':'region_city',
                    'regionidzip':'region_zip',
                     'regionidneighborhood':  'region_neighbor',
                    'taxvaluedollarcnt':'tax_total',
                     'structuretaxvaluedollarcnt':'tax_building',
                     'landtaxvaluedollarcnt':'tax_land',
                     'taxamount':'tax_property',
                     'assessmentyear':'tax_year',
                    'taxdelinquencyflag':'tax_delinquency',
                     'taxdelinquencyyear':'tax_delinquency_year',
                     'propertyzoningdesc':'zoning_property',
                     'propertylandusetypeid' : 'zoning_landuse',
                     'propertycounty':'landusecode,zoning_landuse_county',
                     'fireplaceflag':'flag_fireplace',
                     'hashottuborspa':'flag_tub',
                     'buildingqualitytypeid':'quality',
                     'buildingclasstypeid':'framing',
                     'typeconstructiontypeid':'material',
                     'decktypeid':'deck',
                     'storytypeid':'story',
                    'heatingorsystemtypeid':'heating',
                     'airconditioningtypeid':'aircon',
                    'architecturalstyletypeid' :'architectural_style'
})

以上是关于python 在zillow中重命名列的主要内容,如果未能解决你的问题,请参考以下文章

在 Laravel 迁移中重命名列,强制小写

在迁移中使用 postgreSQL 重命名列

如何使用 Visual Studio 数据库项目重命名列?

在 python 或 Pyspark 数据框中使用特殊字符重命名列

Python Pandas 合并(和连接)是不是无法通过后缀参数重命名列?

RecursionError:重命名列条目后调用 Python 对象时超出最大递归深度