根据值创建新列

时间:2019-11-27 14:05:06

标签: python-3.x pandas

我想基于一行中的值创建一个新列 例如,df最初看起来像这样:

Article    Year     Price
1          2019     16.0
1          2018     20.0
2          2019     8.0
2          2018     4.0

如何合并这些值,使其看起来像这样?有解决办法用熊猫来实现吗?

Article    2019_Price   2018_Price
1             16.0         20.0         
2             8.0          4.0

我是Pandas的新手,所以感谢您的回答。

0 个答案:

没有答案