The frame.append method is deprecated and will be removed from pandas in a future version.(pandas)
问题解释:pandas中未来版本中要移除掉的函数。我这里的问题是最常用的Dataframe的.append()以后要环城concat进行行的添加了。以下给出一种能用的解决方法:定义两个dataframe然后进行concatog=pd.DataFrame(index=[],columns=['epoch','lr','loss'])#随便定义些数据a=range(2,6)#新建一个DataFrame