#0. 소스데이터
#1. 에러바 그리기
#plot errorbar
plt.rcParams['figure.figsize']=(15,7)
plt.errorbar(x=y_train_gb.index, y=y_train_gb['pred-true_mean'], yerr=y_train_gb['pred-true_std'])
plt.title('mean error(pred_eGFR - true_eGFR) in trainset')
plt.xlabel('round_eGFR')
plt.ylabel('mean error')
plt.show()