Python Matplotlib - 선 그래프 기초 2
1. 그래프 단계(셀로판지 개념)1단계 : 배경 설정(축)2단계 : 그래프 추가(점, 막대, 선)3단계 : 설정 추가(축 범위, 색, 표식) 2. Sample Data Basenewborn = [465892, 444849, 470171, 471265, 484550, 436455, 435435, 438420, 406243, 357771] year = [2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017] 3. Sample Codefrom matplotlib import pyplot newborn = [465892, 444849, 470171, 471265, 484550, 436455, 435435, 438420, 406243, 357771] year =..
Python Matplotlib - 선 그래프 기초 1
1. Matplotlib자료를 차트나 플롯 형식으로 시각화 패키지다양한 시각화 기능 제공 2. 설치pip install matplotlib 3. Pyplot 모듈 로드from matplotlib import pyplot 4. 기본 구조from matplotlib import pyplot data = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] pyplot.figure() pyplot.plot(data) pyplot.show() pyplot.close() 5. 기본 구조 정리- Data 설정(X 축 = 리스트 인덱스 0 ~ 9 / Y축 = 리스트의 데이터 0 ~ 9 / 기본적인 방정식 f(x) = x)data = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] - 그래프 설정 시작pypl..
Data Refining NA Data(데이터 정제 결측치)
1. 결측치(Null)데이터 중에 비어 있는 값.수집 과정에서 오류로 발생한다. 2. DataFrame Sourcegrade_dic = { '국어': [98, 88, 92, 63, None], '영어': [None, 90, 70, 60, 50], '수학': [88, 62, None, 31, None], '과학': [64, 72, None, 70, 88] } import pandas from pandas import DataFrame from prettytable import PrettyTable df = DataFrame(grade_dic, index=['코난', '뭉치', '아름', '세모', '장미']) if isinstance(df, pandas.core.frame.DataFrame): table ..