1062195630 发表于 2021-7-3 20:07:55

pandas求助

mylist = list('abcedfghijklmnopqrstuvwxyz')
myarr = np.arange(26)
mydict = dict(zip(mylist, myarr))
ser = pd.Series(mydict)
df = ser.to_frame().reset_index()
print(df.head())


请问这两个什么作用啊
to_frame()
reset_index()

不能懒 发表于 2021-7-3 20:57:50

Series.to_frame()函数用于将系列对象转换为DataFrame
reset_index()重置索引
页: [1]
查看完整版本: pandas求助