pandas是使用很多的python库,最近发现用字典的办法来构建dataframe非常方便,下面记录下来。
首先导入pandas,构建两个列表hight,weight
import pandas as pd
hight = [160,180,175]
weight = [70,80,90]
将上面两个数据构建字典, 然后用字典构建dataframe
# 字典
dict = {'Hight': hight, 'Weight': weight}
# 构建pandas数据块
df = pd.DataFrame(dict)
# 按重量进行排列
ddf=df.sort_values('Weight')
print(df)
结果显示
Hight Weight
0 160 70
1 180 80
2 175 90
网友评论