我正在尝试使用 Pandas 中的 DataFrame 。如何将for循环中的计算值依次附加到pandas.DataFrame?
一种方法是将所有计算值推送到数组( wlines 和 peaktype ),并根据索引到新数组中选择元素( new_list < / strong>)并将 new_list 传递给DataFrame。例如(见下文):
wlines = [427.397, 431.958, 450.235, 557.029, 587.092, 605.613, 645.629,
665.223, 669.923, 681.311, 690.468]
peaktype = [0.5, 0.5, 1.0, 0.5, 1.0, 0.5, 0.5, 0.5,
0.5, 0.5, 0.5]
new_list = [427.397, 0.5]