Introduction to Linear Modeling in Python
Jason Vestuto
Data Scientist
Population statistics vs Sample statistics
print( len(month_of_temps), month_of_temps.mean(), month_of_temps.std() )
print( len(decade_of_temps), decade_of_temps.mean(), decade_of_temps.std() )
Draw a Random Sample from a Population
month_of_temps = np.random.choice(decade_of_temps, size=31)
# Resampling as Iteration
num_samples = 20
for ns in range(num_samples):
sample = np.random.choice(population, num_pts)
distribution_of_means[ns] = sample.mean()
# Sample Distribution Statistics
mean_of_means = np.mean(distribution_of_means)
stdev_of_means = np.std(distribution_of_means)
Introduction to Linear Modeling in Python