码迷,mamicode.com
首页 > 其他好文 > 详细

dataframe 处理某列的小数位数并加特殊符号

时间:2020-01-12 13:43:11      阅读:219      评论:0      收藏:0      [点我收藏+]

标签:list   frame   none   str   dataframe   lse   orm   code   class   

 1 # 处理小数+符号
 2 def deal_data_symbol(dataframe, deal_list, symbol=None, floatformat=2):
 3     ‘‘‘
 4     dataframe: 需要处理的dataframe
 5     deal_list: 需要处理的列,必须是可迭代
 6     symbol: 需要添加的符号,默认无
 7     floatformat:保留几位小数,默认为2位
 8     ‘‘‘
 9     def data(x):
10         if str(x) != ‘‘:
11             y = %. + str(floatformat) + f
12             if symbol != None:
13                 x = y % x + symbol
14             else:
15                 x = y % x
16         return x
17 
18     for i in deal_list:
19         dataframe[i] = dataframe[i].map(data)
20     return dataframe

dataframe 处理某列的小数位数并加特殊符号

标签:list   frame   none   str   dataframe   lse   orm   code   class   

原文地址:https://www.cnblogs.com/xshan/p/12182299.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!