pbj0812의 코딩 일기

[Python을 활용한 데이터분석 기초] 빅데이터 이해 및 Jupyter Notebook 개요 본문

빅데이터/Python을 활용한 데이터분석 기초

[Python을 활용한 데이터분석 기초] 빅데이터 이해 및 Jupyter Notebook 개요

pbj0812 2018. 4. 22. 23:28

- Big Data

  ㄴ Volume + Variety + Velocity + Veracity + Value


- Data Analysis Tool

  ㄴ pandas, scipy, numpy


- Data Visualization Tool

  ㄴ matplotlib, seaborn, D3(java script 기반) 


- Jupyter notebook 설치

  ㄴ https://brunch.co.kr/@mapthecity/16 참고

  ㄴ 수업 소스 : https://github.com/tyoon10/T-academy


- Jupyter notebook 장점

  ㄴ 결과를 바로 확인할 수 있다는 점

  ㄴ 마크다운을 통해서 교육하거나 보기 편함

  

# USEFUL SHORTCUTS


run_and_pass = 'shift + enter'

run_and_add_cell = 'alt + enter'

run_and_stay = 'ctrl + enter'


view_recommendations = 'tab'

view_docstrings = 'shift + tab'


add_hashtag = 'ctrl + /'

add_cell = 'b'

delete_cell = 'dd'



Comments