![](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FbWV9qH%2FbtsD8wTrakT%2FXhGZkxFl7Fqs9zJ5Qx4hg0%2Fimg.png)
[데이터 분석] 기온 변화 그래프 그리기 / 기온 데이터 다양하게 시각화하기
·
데이터 분석
- 데이터 리스트에 저장하기 import csv f = open('jinju.csv', 'r', encoding='cp949') data = csv.reader(f) header = next(data) result=[] for row in data: if row[-1]!='': result.append(float(row[-1])) print(result) [3.0, 7.9, 8.5, 7.0, 6.3, 9.3, 11.9, 14.6, 14.9, ...] - 데이터 시각화하기 import csv import matplotlib.pyplot as plt f = open('jinju.csv', 'r', encoding='cp949') data = csv.reader(f) header = next(data) res..