[Build 1.2.2] fix: 添加学龄字段的整数转换处理
- 在数据处理过程中,新增对“学龄”字段的整数转换,确保数据一致性 - 提升数据的完整性和准确性
This commit is contained in:
parent
2cf2862f96
commit
7c6bb16d89
1
main.py
1
main.py
@ -144,6 +144,7 @@ def to_int(x):
|
|||||||
return 0
|
return 0
|
||||||
BaseData["工龄调增"] = BaseData["工龄调增"].apply(to_int)
|
BaseData["工龄调增"] = BaseData["工龄调增"].apply(to_int)
|
||||||
BaseData["工龄调减"] = BaseData["工龄调减"].apply(to_int)
|
BaseData["工龄调减"] = BaseData["工龄调减"].apply(to_int)
|
||||||
|
BaseData["学龄"] = BaseData["学龄"].apply(to_int)
|
||||||
|
|
||||||
max_promote = 0
|
max_promote = 0
|
||||||
max_history = 0
|
max_history = 0
|
||||||
|
Loading…
x
Reference in New Issue
Block a user