Skip to content

Latest commit

 

History

History
22 lines (18 loc) · 603 Bytes

week01.md

File metadata and controls

22 lines (18 loc) · 603 Bytes

week 01

section 0

    1. 데이터 수집 : 크롤링, DB, Open API
    1. 데이터 구조화 : JSON, CSV, XML, Plain Text
    1. 데이터 전처리 : 파이썬, pandas
    1. 데이터 분석 : 데이터 분석, 데이터 시각화

section 1

  • 아나콘다와 주피터 노트북 설치
  • 셀마다 코드 실행 결과 확인 가능
  • 코드 실행: shift+enter

section 2

  • 파이썬 문법 ... 아는 내용이므로 생략
  • 라이브러리 설치: pip install pandas pip install statistics
from statistics import mean
from statistics import *
print(mean(data))