简体   繁体   English

如何将此 pandas dataframe 从高表示转换为宽表示,删除一列

[英]How to convert this pandas dataframe from a tall to a wide representation, dropping a column

I have the following dataframe:我有以下 dataframe:

df = pd.DataFrame({'Variable':    {0: 'Abs', 1: 'rho0', 2: 'cp', 3: 'K0'},
                   'Value':       {0: 0.585, 1: 8220.000, 2: 435.000, 3: 11.400},
                   'Description': {0: 'foo', 1: 'foo', 2: 'foo', 3: 'foo'}})

I would like to reshape it like this:我想像这样重塑它:

df2 = pd.DataFrame({'Abs':  {0: 0.585},
                    'rho0': {0: 8220.000},
                    'cp':   {0: 435.000},
                    'K0':   {0: 11.400}})

How can I do it?我该怎么做?

df3 = df.pivot_table(columns='Variable', values='Value')
print(df3)
Variable    Abs    K0     cp    rho0
Value     0.585  11.4  435.0  8220.0

gets very close to what I was looking for, but I'd rather do without the first column Variable , if at all possible.非常接近我正在寻找的内容,但如果可能的话,我宁愿不使用第一列Variable

You can try renaming the axis()您可以尝试重命名轴()

df3 = df.pivot_table(values='Value', columns='Variable').rename_axis(None, axis=1) 

additionally if you want to reset the index另外,如果您想重置索引

df3 = df.pivot_table( columns='Variable').rename_axis(None, axis=1).reset_index().drop('index',axis=1)
df3.to_dict()
# Output 
           {'Abs': {0: 0.585}, 
           'K0': {0: 11.4}, 
           'cp': {0: 435.0}, 
           'rho0': {0: 8220.0}}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM