dataframe 添加一行

添加一个column最简单的方式是df['new_col_name'] = array-like

添加一行其实是类似的df.loc[new_row_index] = array-like,实际应用中就是df.loc[df.shape[0]]

留言

熱門文章