Random number generators और hacker statistics

Statistical Thinking in Python (Part 1)

Justin Bois

Teaching Professor at the California Institute of Technology

Hacker statistics

  • संभावनाएँ निकालने के लिए सिम्युलेटेड दोहराए गए मापनों का उपयोग करता है.
Statistical Thinking in Python (Part 1)

  ch3-2.004.png

1 Image: artist unknown
Statistical Thinking in Python (Part 1)

ch3-2.005.png

1 Image: Heritage Auction
Statistical Thinking in Python (Part 1)

Coin flips का सिम्युलेशन

ch3-2.010.png

Statistical Thinking in Python (Part 1)

Bernoulli trials

  • ऐसा प्रयोग जिसमें दो विकल्प हों: "सफलता" (True) और "विफलता" (False).
Statistical Thinking in Python (Part 1)

np.random मॉड्यूल

import numpy as np
rng = np.random.default_rng()

rng
Generator(PCG64) at 0x7F9433D38120
Statistical Thinking in Python (Part 1)

Random number seed

  • रैंडम नंबर जेनरेटिंग एल्गोरिदम में दिया गया integer
  • केवल तभी मैन्युअली seed करें जब reproducibility चाहिए
  • rng = np.random.default_rng(seed) से सेट करें
Statistical Thinking in Python (Part 1)

4 coin flips का सिम्युलेशन

rng = np.random.default_rng(42)

random_numbers = rng.random(size=4)
random_numbers
array([0.77395605, 0.43887844, 0.85859792, 0.69736803])
heads = random_numbers < 0.5
heads
array([False,  True, False, False])
np.sum(heads)
1
Statistical Thinking in Python (Part 1)

4 coin flips का सिम्युलेशन

n_all_heads = 0  # Initialize number of 4-heads trials
for _ in range(10000):
     heads = np.random.random(size=4) < 0.5
     n_heads = np.sum(heads)
     if n_heads == 4:
         n_all_heads += 1

n_all_heads / 10000
0.0607
Statistical Thinking in Python (Part 1)

Hacker stats probabilities

  • तय करें कि डेटा को कैसे सिम्युलेट करें
  • बहुत बार सिम्युलेट करें
  • चाहिते outcome वाले trials का अंश ही लगभग probability है
Statistical Thinking in Python (Part 1)

अभ्यास करते हैं!

Statistical Thinking in Python (Part 1)

Preparing Video For Download...