Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
学ぶ Implementing Sampling to Python | Probability & Statistics
Mathematics for Data Science with Python

bookImplementing Sampling to Python

メニューを表示するにはスワイプしてください

Simple Random Sampling

1234567
import random N = 30 # population size n = 5 # sample size sample_srs = random.sample(range(1, N+1), n) print(f"Simple Random Sample: {sample_srs}")
copy
  • random.sample(range(1, N+1), n) randomly selects n unique values from the population;
  • Works without replacement (no repeats);
  • Every member of the population has an equal chance of being chosen.

Stratified Sampling

123456789
N_males = 18 N_females = 12 N_total = N_males + N_females n_total = 10 n_males = round((N_males / N_total) * n_total) n_females = round((N_females / N_total) * n_total) print(f"Stratified Sample Size -> Males: {n_males}, Females: {n_females}")
copy
  • Population is divided into subgroups (strata);
  • Sample is drawn proportionally from each subgroup;
  • Ensures representation of key groups.

Cluster Sampling

1234567
import random clusters = 5 students_per_cluster = 25 selected_cluster = random.randint(1, clusters) print(f"Selected cluster (classroom): {selected_cluster} containing {students_per_cluster} students")
copy
  • Population divided into clusters (e.g., classrooms);
  • One or more clusters are selected randomly;
  • Everyone in chosen cluster(s) is surveyed;
  • Efficient when listing every individual is impractical.

Systematic Sampling

123456789101112
import random N = 1000 n = 100 k = N // n # Sampling interval start = random.randint(1, k) # Random start sample_systematic = list(range(start, N+1, k)) print(f"Sampling interval k = {k}") print(f"Random start = {start}") print(f"First 10 samples: {sample_systematic[:10]}")
copy
  • Interval k=Nnk = \frac{N}{n};
  • Start point chosen randomly between 1 and kk;
  • Select every kk-th element from ordered population.

Summary of Methods

  • Simple Random: equal chance for all, no repeats;
  • Stratified: ensures subgroup representation;
  • Cluster: randomly selects whole groups;
  • Systematic: selects at fixed intervals after random start.
question mark

What function is used for simple random sampling without replacement?

正しい答えを選んでください

すべて明確でしたか?

どのように改善できますか?

フィードバックありがとうございます!

セクション 5.  6

AIに質問する

expand

AIに質問する

ChatGPT

何でも質問するか、提案された質問の1つを試してチャットを始めてください

セクション 5.  6
some-alt