03. Series 생성
■ Series 생성 Pandas의 Series은 Series()이라는 클래스를 이용해 생성 가능하다 Series는 numpy의 reference이다. pd.Series(data=None, index=None, dtype=None, name=None, copy=False, fastpath=False) data Series나 DataFrame을 작성할 데이터. Series를 생성할 때에는 python의 list, DataFrame을 생성할 때에는 python의 dictionary를 이용할 수 있다. index Pandas 객체를 생성할 때 사용할 인덱스 명. 인덱스명을 지정하지 않으면 0~ 정수 값으로 지정된다. columns DataFrame의 컬럼 명 지정. dtype 데이터 타입의 설정 name Da..
데이터 분석/판다스
2023. 11. 9. 08:52