PinkWink / DataScience

책) 파이썬으로 데이터 주무르기 - 소스코드 및 데이터 공개
http://pinkwink.kr/1070
246 stars 502 forks source link

1장 71page #21

Open 9610mouse opened 6 years ago

9610mouse commented 6 years ago

plt.text 열에 1.02 랑 0.98이 들어가는이유가 뭔가요? 지워도 결과는 같은데 이유가 있는지 궁금합니다.

plt.figure(figsize=(14,10)) plt.scatter(data_result['인구수'],data_result['소계'],c = data_result['오차'],s=50) plt.plot(fx,f1(fx),ls = 'dashed', lw = 3,color = 'g') for n in range(12): plt.text(df_sort['인구수'][n]1.02,df_sort['소계'][n]0.98,df_sort.index[n],fontsize=15)

plt.xlabel('소계') plt.ylabel('인구당비율') plt.show()

PinkWink commented 6 years ago

미세하게 글자의 위치를 조금 바꿔서 그래프와 겹치는 부분을 살짝 이도하게 했습니다. 그래서 scatter 점과 겹치지 않게 하려 한 것입니다.