간단한 그래프 그리기
1) 막대그래프 그려보기 데이터 정의 import matplotlib.pyplot as plt %matplotlib inline #그래프 데이터 subject = ['English', 'Math', 'Korean', 'Science', 'Computer'] points = [40, 90, 50, 60, 100] 축 그리기# 축 그리기 fig = plt.figure(figsize=(5,2)) 도화지(그래프) 객체 생성 figsize로 인자 값을 주어 그래프 크기를 바꿀 수 있음 ax1 = fig.add_subplot(1,1,1) #figure()객체에 add_subplot 메서드를 이용해 축을 그려준다. [matplotlib API 바..
더보기