728x90

파이썬 딕셔너리를 사용해서 데이터프레임을 생성하는 예제입니다.
코드
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Pandas | |
import pandas as pd | |
# from dict 사용 | |
test_dict = {'a':[1,2,3], 'b':[4,5,6], 'c':[7,8,9]} | |
test_df = pd.DataFrame.from_dict(test_dict) | |
# orient, column 사용 | |
test_df2 = pd.DataFrame.from_dict(test_dict, orient='index',columns=['c1','c2','c3']) | |
test_df2 |
레퍼런스
728x90
'DATA' 카테고리의 다른 글
3년간 진행했던 데이터 분석 프로젝트 회고 (0) | 2021.05.22 |
---|---|
카카오톡 대화내용 엑셀 파워쿼리로 정리하기 (0) | 2021.03.06 |
Pandas : 조건에 따른 데이터프레임 누적합 계산 (0) | 2020.09.11 |
파이썬에서 MS-SQL 테이블 가져오기 예제 (0) | 2020.05.25 |
특정 값일 때 데이터프레임의 특정 칼럼에 값 넣기 (0) | 2019.10.21 |
[Python pandas] 특정 칼럼의 특정값이 들어간 row를 제거하기 (0) | 2019.10.21 |