python dataframe添加行
时间: 2023-04-13 12:03:16 浏览: 102
python 创建一个空dataframe 然后添加行数据的实例
在 pandas DataFrame 中添加行可以使用以下方法:
1. 使用 loc 属性和字典:df.loc[len(df)] = {'列1': 值1, '列2': 值2, ...}
2. 使用 append 方法:df = df.append({'列1': 值1, '列2': 值2, ...}, ignore_index=True)
3. 使用 concat 方法:df = pd.concat([df, pd.DataFrame({'列1': [值1], '列2': [值2], ...}, index=[len(df)])], axis=0)
阅读全文