[todaycode오늘코드] [5] Pandas 기초 - head, tail로 데이터 미리보기





* https://pandas.pydata.org/Pandas_Chea... * 판다스 10분 완성 : https://dataitgirls2.github.io/10minu... * 특정 비율과 갯수로 데이터를 샘플링 하기 df.sample(frac=0.5) Randomly select fraction of rows. df.sample(n=10) Randomly select n rows. * 인덱스의 순서로 데이터를 색인해 오기 df.iloc[10:20] Select rows by position. * 특정 컬럼에서 가장 큰 값과 작은 값 가져오기 df.nlargest(n, 'value') Select and order top n entries. df.nsmallest(n, 'value') Select and order bottom n entries.

댓글

이 블로그의 인기 게시물

[이수안컴퓨터연구소] 파이썬 레이싱 자동차 게임 만들기 Creating a Python Racing Car Game with pygame (한글자막)

[빵형의 개발도상국] 얼굴 인식 알고리즘 성능 비교 - Python, Deep Learning