Chap1. (Week2) matplotlib, numpy
https://colab.research.google.com/drive/1EWQ_g5sTDbKG_iDN35gTtuL22c3edHPb?usp=sharing plt.plot import matplotlib.pyplot as plt # 우리나라의 연간 1인단 국민소득을 각각 years, gdp에 저장 years=[1950,1960,1970,1980,1990,2000,2010] gdp= [67.0, 80.0, 257.0, 1686.0, 6505, 11865.3, 22105.3] # plt.plot(x, y, color, market, linestyle) plt.plot(years,gdp, color='green', marker='o', linestyle='solid', ) # title it / 1인당 국민소득..