The frame.append method is deprecated and will be removed from pandas in a future version. Use panda

示例:

data_df = data_df.append(k_rs.get_data())

报错:

FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.

解决办法:

data_df = pd.concat([data_df,k_rs.get_data()])

你可能感兴趣的:(python,vue.js,前端,javascript)