K 시리즈 데이터 연결하기
# 시리즈 데이터 만들기 = pd.Series(['a', 'b'])
실행 결과
0 a 1 b dtype: object
'c', 'd'])= pd.Series([
실행 결과
0 c 1 d dtype: object
# 시리즈 데이터 만들기 = pd.Series(['a', 'b'])
실행 결과
0 a 1 b dtype: object
'c', 'd'])= pd.Series([
실행 결과
0 c 1 d dtype: object