CODEDRAGON ㆍDevelopment/Python
DataFrame 구조도
· DataFrame 객체는 'col0', 'col1', 'col2'라는 세 개의 Series 객체로 구성되는데,
· DataFrame 에는 3개의 Series 객체가 있습니다.
· 이는 'col0', 'col1', 'col2'라는 키에 각각 대응되는 값이고 이것들을 하나의 파이썬 딕셔너리 객체형태로 다루게 됩니다.
· 따라서 'col0', 'col1', 'col2'라는 키를 통해 값에 해당하는 Series 객체에 접근할 수 있습니다.
raw_data = {key: value, 'col0': [10, 20, 30, 40], 'col1': [100, 200, 300, 400], 'col2': ["A", "B", "C", "D"], 'col3': [10.1, 20.2, 30.3, 40.4] }
|
columns = ["col0", "col1", "col2", "col3"] index = ["row0", "row1", "row2", "row3] |
data = pd.DataFrame(raw_data, index=index, columns=columns) |
'Development > Python' 카테고리의 다른 글
데이터프레임 인덱서 (0) | 2020.02.05 |
---|---|
시리즈(Series) vs 데이터프레임(Data-Frame) (0) | 2020.02.05 |
notnull() (0) | 2020.02.05 |
pandas 설치하기 (0) | 2020.02.05 |
데이터의 코드 (0) | 2020.02.05 |