LoslegenKostenlos loslegen

Generating a sample

A hospital's planning department is investigating different treatments for newborns. As a data scientist you are hired to simulate the sex of 250 newborn children, and you are told that on average 50.50% are males.

Diese Übung ist Teil des Kurses

Foundations of Probability in Python

Kurs anzeigen

Anleitung zur Übung

  • Import the binom object from scipy.stats.
  • Generate a sample of 250 newborns with 50.50% probability of being male.
  • Print the sample.

Interaktive Übung

Versuche dich an dieser Übung, indem du diesen Beispielcode vervollständigst.

# Import the binom object
from scipy.stats import ____

# Generate a sample of 250 newborn children
sample = ____.____(n=____, p=____, size=____, random_state=42)

# Show the sample values
print(____)
Code bearbeiten und ausführen