"Pandas 열 병합"의 두 판 사이의 차이

잔글 (봇: 자동으로 텍스트 교체 (-</source> +</syntaxhighlight>, -<source +<syntaxhighlight ))
잔글 (Jmnote님이 Pandas 데이터프레임 열 병합 문서를 Pandas 열 병합 문서로 이동했습니다)
 
(차이 없음)

2021년 9월 23일 (목) 19:42 기준 최신판

1 개요[ | ]

Pandas 데이터프레임 열 병합
from numpy import NaN
import pandas as pd

df1 = pd.DataFrame([
[ 'A', 'Alice' ],
[ 'A', 'Bob'   ],
[ 'B', 'Carol' ],
[ 'B', 'Dave'  ],
],columns=['Class','Name'])

df2 = pd.DataFrame([
[ 90 , 60  ],
[ 80 , NaN ],
[ NaN, 80  ],
[ 60 , 90  ],
],columns=['English','Math'])

pd.concat([df1, df2], axis=1)
pd.concat([df2, df1], axis=1)

2 같이 보기[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}