gpt4 book ai didi

python - 用python转换csv文件

转载 作者:行者123 更新时间:2023-11-28 20:14:25 27 4
gpt4 key购买 nike

我是 python 的新手,有人知道什么是好的方法吗?我可以只编写脚本,但使用包可能更快。

我有这个 .csv 文件(大千兆字节):

name,   value,  time
A, 1, 10
B, 2, 10
C, 3, 10
C, 3, 10 (should ignore duplicates, or non complete (A,B,C) entries
A, 4, 12 (should be sorted by time, this entry should be at the end, after time==11)
B, 5, 12
C, 6, 12
B, 7, 11 (order of A,B,C might be different)
C, 8, 11
A, 9, 11

将其转换为包含以下内容的新 .csv 文件:

time,   A,  B,  C
10, 1, 2, 3
11, 9, 7, 8
12, 4, 5, 6

最佳答案

我认为需要drop_duplicatespivot :

df = df.drop_duplicates().pivot('time','name','value')
print (df)
name A B C
time
10 1 2 3
11 9 7 8
12 4 5 6

关于python - 用python转换csv文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49754529/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com