Zufallszahlen

Python für Fortgeschrittene

Hugo Bowne-Anderson

Data Scientist at DataCamp

Python für Fortgeschrittene

Python für Fortgeschrittene

Python für Fortgeschrittene

Python für Fortgeschrittene

Python für Fortgeschrittene

  • Du kannst nicht unter Stufe 0 gehen.
  • 0,1 % Wahrscheinlichkeit, die Treppe komplett herunterzufallen
  • Wette: Du schaffst es mindestens bis Stufe 60.
Python für Fortgeschrittene

Wie kann man das lösen?

  • Analytisch
  • Simulation des Prozesses
    • Ausgefeilte Statistiken!
Python für Fortgeschrittene

Zufallsgeneratoren

import numpy as np
np.random.rand()      # Pseudo-random numbers
0.9535543896720104    # Mathematical formula
np.random.seed(123)    # Starting from a seed
np.random.rand()
0.6964691855978616
np.random.rand()
0.28613933495037946
Python für Fortgeschrittene

Zufallsgeneratoren

np.random.seed(123)
np.random.rand()
0.696469185597861    # Same seed: same random numbers!
np.random.rand()     # Ensures "reproducibility"
0.28613933495037946
Python für Fortgeschrittene

Münzwurf

game.py

import numpy as np

np.random.seed(123)
coin = np.random.randint(0,2) # Randomly generate 0 or 1
print(coin)
0
Python für Fortgeschrittene

Münzwurf

game.py

import numpy as np
np.random.seed(123)
coin = np.random.randint(0,2)  # Randomly generate 0 or 1
print(coin)

if coin == 0: print("heads")
else: print("tails")
0
heads
Python für Fortgeschrittene

Lass uns üben!

Python für Fortgeschrittene

Preparing Video For Download...