pandas dataframe apply 传入外部参数 args
摘要:
# !/usr/bin/python3 import pandas as pd # 如果x小于threshold就等于1,否则等于0 def juege_threshold(x,threshold): return 1 if x<=threshold else 0 data_dict={"value 阅读全文
posted @ 2022-05-12 10:37 TTyb 阅读(465) 评论(0) 推荐(0) 编辑