pandas
-
pandas를 활용한 데이터 전처리Programming & Machine Learning/Python X 머신러닝 2017. 7. 29. 11:22
pandas를 이용한 데이터 전처리1.1 pandas를 사용하지 않은 방법### 기본적인 json read import json path = '/Users/yoon/Downloads/pydata/pydata-book-master/' path = path + 'ch02/usagov_bitly_data2012-03-16-1331923249.txt' records = [json.loads(line) for line in open(path, encoding="utf-8")] records[0]['tz'] records[0] records['tz'] # -> error! 이런 문제점을 해결하기 위해 df 구조가 필요한 것. pandas를 사용하지 않았을 때의 json 파일을 읽는 방법이다. json 모듈을 이용하..