번역체지만 중간 or 맨위에 행을 삽입하는 수많은 방법들이 있다.
https://zephyrus1111.tistory.com/64
중간에 삽입하는 코드도 만들어줬다. 장사 잘되는 블로그는 이유가 있다.
## 원하는 위치에 넣기
new_data = {
'이름' : '아이린',
'나이' : 26,
'키' : 160
}
idx = 1 ## 원하는 인덱스
temp1 = df[df.index < idx]
temp2 = df[df.index >= idx]
df = temp1.append(new_data,ignore_index=True).append(temp2, ignore_index=True)
'파이썬. 데이터분석 > Pandas' 카테고리의 다른 글
Pandas DataFrame : 데이터 행,열 바꾸는 방법들 (0) | 2022.07.02 |
---|---|
Pandas DataFrame : 특정 행 index만 바꾸기. (0) | 2022.06.25 |
Pandas DataFrame : insert 열삽입 (0) | 2022.06.24 |
Pandas DataFrame : del / drop 행, 열 삭제, 특정행 삭제 (0) | 2022.06.24 |
Pandas DataFrame : apply, lambda (0) | 2022.06.22 |