Python ile İstatistiksel Düşünme (Bölüm 1)
Justin Bois
Teaching Professor at the California Institute of Technology



_ = plt.plot(total_votes/1000, dem_share,
marker='.', linestyle='none')
_ = plt.xlabel('total votes (thousands)')
_ = plt.ylabel('percent of vote for Obama')




$$covariance = \frac{1}{n}\sum_{i=1}^{n}(x_i - \bar{x})(y_i - \bar{y})$$
$$\rho = \text{Pearson korelasyonu} = \frac{\text{kovaryans}}{(\text{x'in std'si}) (\text{y'nin std'si})}$$
$$= \frac{\text{bağımlılıktan kaynaklı değişkenlik}}{\text{bağımsız değişkenlik}}$$

Python ile İstatistiksel Düşünme (Bölüm 1)