Optimale parameters

Statistical Thinking in Python (deel 2)

Justin Bois

Lecturer at the California Institute of Technology

Histogram van Michelsons metingen

ch1-1.002.png

1 Gegevens: Michelson, 1880
Statistical Thinking in Python (deel 2)

CDF van Michelsons metingen

ch1-1.004.png

1 Gegevens: Michelson, 1880
Statistical Thinking in Python (deel 2)

Normaliteit van Michelson-data controleren

import numpy as np
import matplotlib.pyplot as plt

mean = np.mean(michelson_speed_of_light) std = np.std(michelson_speed_of_light) samples = np.random.normal(mean, std, size=10000)
Statistical Thinking in Python (deel 2)

CDF van Michelsons metingen

ch1-1.010.png

1 Gegevens: Michelson, 1880
Statistical Thinking in Python (deel 2)

CDF met slechte schatting van std.dev.

ch1-1.012.png

1 Gegevens: Michelson, 1880
Statistical Thinking in Python (deel 2)

CDF met slechte schatting van het gemiddelde

ch1-1.014.png

1 Gegevens: Michelson, 1880
Statistical Thinking in Python (deel 2)

Optimale parameters

  • Parameterwaarden die het model het best laten overeenkomen met de data
Statistical Thinking in Python (deel 2)

Massa van MA largemouth bass

ch1-1.017.png

1 Bron: Mass. Dept. of Environmental Protection
Statistical Thinking in Python (deel 2)

Pakketten voor statistische inferentie

ch1-1.020.png

Statistical Thinking in Python (deel 2)

Pakketten voor statistische inferentie

ch1-1.021.png

Statistical Thinking in Python (deel 2)

Pakketten voor statistische inferentie

ch1-1.022.png

1 Mesafbeelding: D-M Commons, CC BY-SA 3.0
Statistical Thinking in Python (deel 2)

Laten we oefenen!

Statistical Thinking in Python (deel 2)

Preparing Video For Download...