본문 바로가기
DATA Science/Google Machine Learning

Pandas 실습

by Rainbound-IT 2021. 7. 25.
반응형

pandas 문서

 

https://pandas.pydata.org/pandas-docs/stable/index.html

 

pandas documentation — pandas 1.3.0 documentation

The reference guide contains a detailed description of the pandas API. The reference describes how the methods work and which parameters can be used. It assumes that you have an understanding of the key concepts.

pandas.pydata.org

 

Pandas의 기본 데이터 구조는 두 가지 클래스로 구현됩니다.

  • DataFrame은 행 및 이름 지정된 열이 포함된 관계형 데이터 테이블이라고 생각할 수 있습니다.
  • Series는 하나의 열입니다. DataFrame에는 하나 이상의 Series와 각 Series의 이름이 포함됩니다.

 

 

 

 

reindex 입력 배열에 원래 DataFrame 색인 값에 없는 값을 포함하면 reindex가 이 '누락된' 색인에 새 행을 추가하고 모든 해당 열을 NaN 값으로 채웁니다.

반응형

'DATA Science > Google Machine Learning' 카테고리의 다른 글

일반화 : 과적합의 위험  (0) 2021.07.25
Tensorflow 실습 첫번째  (0) 2021.07.25
텐서플로 시작  (0) 2021.07.25
경사하강법  (0) 2021.07.25
학습 및 손실  (0) 2021.07.25

댓글