加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
lsj_write_test.py 1.10 KB
一键复制 编辑 原始数据 按行查看 历史
佳毅 李sb 提交于 2019-11-10 21:49 . init
import numpy as np
import pandas as pd
def tran_strid_int(str_id):
int_id = 0
if str_id == 'y':
int_id = 0
else:
int_id = int(str_id)
return int_id
def trans_check_data(data):
if len(data) == 0:
return [0, 0, 0] # id_now,prop,left_x,left_y,right_x,right_y
else:
print("data", data)
# print("type_data", type(data))
id_now, pro, box = data
id_now = tran_strid_int(id_now)
left_x, left_y, right_x, right_y = box
return [id_now, left_x, left_y, right_x, right_y]
send_current = [('y', 0.1, [1, 1, 1, 1]), ('1', 0.2, [2, 2, 2, 2]), ('1', 0.3, [3, 3, 3, 3]), ('2', 0.4, [4] * 4),
('2', 0.4, [5] * 4), ('2', 0.5, [6] * 4)]
if len(send_current) > 10:
send_current = send_current[:10]
pd_data = pd.DataFrame(send_current, columns=['id', 'pro', 'box'])
for i in range(len(send_current)):
pd_data.iat[i, 0] = tran_strid_int(pd_data.iat[i, 0])
data_count = dict(pd_data['id'].value_counts())
print(pd_data['id'].value_counts())
print(pd_data.iat[0, 0])
# pd_data = pd.DataFrame(send_current,index=[])
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化