pandas 빠 른 데이터 추가

글 의 내용 은 이 편 을 참고 하고,https://blog.csdn.net/jiaqiangbandongg/article/details/52961272
첫 번 째 방법 은 한 줄 을 직접 삽입 합 니 다.
import pandas as pd
from pandas import DataFrame

df3=DataFrame(np.arange(16).reshape((4,4)),index=['a','b','c','d'],columns=['one','two','three','four']) 

#           index,     
df3.loc['new'] = ['a','a','a','a']

#      

	one	two	three	four
a	0	1	2	3
b	4	5	6	7
c	8	9	10	11
d	12	13	14	15
new	a	a	a	a

 두 번 째 방식 은 같은 dataframe 을 새로 만 든 다음 두 개의 dataframe 을 합 친다.
df4 = pd.DataFrame([6,6,6,6]).T
#   df4 column df3   
df4.columns = df3.columns
#    dataframe  ,     ignore_index=True
df_new = pd.concat([df3,df4],ignore_index=True)

#     

	one	two	three	four
0	0	1	2	3
1	4	5	6	7
2	8	9	10	11
3	12	13	14	15
4	a	a	a	a
5	6	6	6	6

 

좋은 웹페이지 즐겨찾기