迭代数据框中的列并创建名称为列+ str的列表

时间:2018-03-27 13:26:42

标签: python pandas

我有一个带有2个coulmn的数据框,我想遍历列标题,使用该值并为其添加一个字符串并将其用作列表的名称。

rr

string input; do { Console.Write("Enter an equation: "); input = Console.ReadLine(); } while (FSharpOption<Expression>.get_IsNone(Infix.TryParse(input)));

resampled=pd.DataFrame()
resampled['RAT']=dd1['RAT']
resampled['SAT']=dd1['SAT']
rr=resampled-resampled.shift(1)

我想获得2个名字列表 RATstuck SATstuck

感谢你!

1 个答案:

答案 0 :(得分:0)

你试过列表理解吗?

[x+'stuck' for x in rr.columns]