Python 선 그래프 그리기
ㄱ import matplotlib.pyplot as plt import matplotlib.legend as legend index=[0.7, 0.6, 0.5, 0.4, 0.3, 0.2, 0.1, 0] #GABDR=[0.86, 1, 0.98, 0.98, 0.99, 0.98, 0.99, 1] GABDR=[0, 0.51, 0.37, 0.87, 0.41, 0.33, 0.56, 0.65] gab,=plt.plot(index, GABDR, 'ro-') #plt.plot(index, GABFPR, 'ro-') #RABDR=[0.94, 0.99, 0.99, 0.97, 0.99, 0.96, 0.90, 1] RABDR=[0.06, 0.39, 0.53, 0.43, 0.29, 0.42, 0.41, 0.34] rab,=pl..