标签:dff cee pre .com ace cal ext order ica
临时处理一个Numpy的二进制文件,分析知道里面是dict类型,简单小记一下,如果Numpy和Python基础不熟悉可以看我之前写的文章
%%time
import numpy as np
%%time
import pandas as pd
%%time
df = pd.DataFrame(np.load("data.npy")) # 通过narry创建DataFrame
%%time
df.head(10) # 快速预览前10行
%%time
# 提取email列
df[‘Email‘] = df[0].map(lambda x : dict(x)["email"])
# 提取pwd列
df[‘MD5‘] = df[0].map(lambda x : dict(x)["pwd"] )
# 删除无用列
del df[0]
%%time
df.size # 查看总共多少数据
%%time
df.shape
%%time
df.head(10)
%%time
df.T.to_json("user.json") # 重新保存为Json(转置只是为了存储成我们常见的json格式)
临时处理小记:把Numpy的narray二进制文件转换成json文件
标签:dff cee pre .com ace cal ext order ica
原文地址:https://www.cnblogs.com/dotnetcrazy/p/9403230.html