我有一个带有2个coulmn的数据框,我想遍历列标题,使用该值并为其添加一个字符串并将其用作列表的名称。
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
感谢你!
答案 0 :(得分:0)
[x+'stuck' for x in rr.columns]