SlideShare a Scribd company logo
1 of 31
Download to read offline
Random Numbers
INTERMEDIATE PYTHON
Hugo Bowne-Anderson
Data Scientist at DataCamp
INTERMEDIATE PYTHON
INTERMEDIATE PYTHON
INTERMEDIATE PYTHON
INTERMEDIATE PYTHON
INTERMEDIATE PYTHON
INTERMEDIATE PYTHON
Can't go below step 0
0.1 % chance of falling down
the stairs
Bet: you'll reach step 60
INTERMEDIATE PYTHON
How to solve?
Analytical
Simulate the process
Hacker statistics!
INTERMEDIATE PYTHON
Random generators
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
INTERMEDIATE PYTHON
Random generators
np.random.seed(123)
np.random.rand()
0.696469185597861 # Same seed: same random numbers!
np.random.rand() # Ensures "reproducibility"
0.28613933495037946
INTERMEDIATE PYTHON
Coin toss
game.py
import numpy as np
np.random.seed(123)
coin = np.random.randint(0,2) # Randomly generate 0 or 1
print(coin)
0
INTERMEDIATE PYTHON
Coin toss
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
Let's practice!
INTERMEDIATE PYTHON
Random Walk
INTERMEDIATE PYTHON
Hugo Bowne-Anderson
Data Scientist at DataCamp
INTERMEDIATE PYTHON
Random Step
INTERMEDIATE PYTHON
Random Walk
Known in Science
Path of molecules
Gambler's nancial status
INTERMEDIATE PYTHON
Heads or Tails
headtails.py
import numpy as np
np.random.seed(123)
outcomes = []
for x in range(10) :
coin = np.random.randint(0, 2)
if coin == 0 :
outcomes.append("heads")
else :
outcomes.append("tails")
print(outcomes)
['heads', 'tails', 'heads', 'heads', 'heads',
'heads', 'heads', 'tails', 'tails', 'heads']
INTERMEDIATE PYTHON
Heads or Tails: Random Walk
headtailsrw.py
import numpy as np
np.random.seed(123)
tails = [0]
for x in range(10) :
coin = np.random.randint(0, 2)
tails.append(tails[x] + coin)
print(tails)
[0, 0, 1, 1, 1, 1, 1, 1, 2, 3, 3]
INTERMEDIATE PYTHON
Step to Walk
outcomes
['heads', 'tails', 'heads', 'heads', 'heads',
'heads', 'heads', 'tails', 'tails', 'heads']
tails
[0, 0, 1, 1, 1, 1, 1, 1, 2, 3, 3]
Let's practice!
INTERMEDIATE PYTHON
Distribution
INTERMEDIATE PYTHON
Hugo Bowne-Anderson
Data Scientist at DataCamp
INTERMEDIATE PYTHON
Distribution
INTERMEDIATE PYTHON
Random Walk
headtailsrw.py
import numpy as np
np.random.seed(123)
tails = [0]
for x in range(10) :
coin = np.random.randint(0, 2)
tails.append(tails[x] + coin)
INTERMEDIATE PYTHON
100 runs
distribution.py
import numpy as np
np.random.seed(123)
final_tails = []
for x in range(100) :
tails = [0]
for x in range(10) :
coin = np.random.randint(0, 2)
tails.append(tails[x] + coin)
final_tails.append(tails[-1])
print(final_tails)
[3, 6, 4, 5, 4, 5, 3, 5, 4, 6, 6, 8, 6, 4, 7, 5, 7, 4, 3, 3, ..., 4]
INTERMEDIATE PYTHON
Histogram, 100 runs
distribution.py
import numpy as np
import matplotlib.pyplot as plt
np.random.seed(123)
final_tails = []
for x in range(100) :
tails = [0]
for x in range(10) :
coin = np.random.randint(0, 2)
tails.append(tails[x] + coin)
final_tails.append(tails[-1])
plt.hist(final_tails, bins = 10)
plot.show()
INTERMEDIATE PYTHON
Histogram, 100 runs
INTERMEDIATE PYTHON
Histogram, 1,000 runs
distribution.py
import numpy as np
import matplotlib.pyplot as plt
np.random.seed(123)
final_tails = []
for x in range(1000) : # <--
tails = [0]
for x in range(10) :
coin = np.random.randint(0, 2)
tails.append(tails[x] + coin)
final_tails.append(tails[-1])
plt.hist(final_tails, bins = 10)
plot.show()
INTERMEDIATE PYTHON
Histogram, 1,000 runs
INTERMEDIATE PYTHON
Histogram, 10,000 runs
distribution.py
import numpy as np
import matplotlib.pyplot as plt
np.random.seed(123)
final_tails = []
for x in range(10000) : # <--
tails = [0]
for x in range(10) :
coin = np.random.randint(0, 2)
tails.append(tails[x] + coin)
final_tails.append(tails[-1])
plt.hist(final_tails, bins = 10)
plot.show()
INTERMEDIATE PYTHON
Histogram, 10,000 runs
Let's practice!
INTERMEDIATE PYTHON

More Related Content

Similar to chapter5.pdf

error 2.pdf101316, 6(46 PM01_errorPage 1 of 5http.docx
error 2.pdf101316, 6(46 PM01_errorPage 1 of 5http.docxerror 2.pdf101316, 6(46 PM01_errorPage 1 of 5http.docx
error 2.pdf101316, 6(46 PM01_errorPage 1 of 5http.docxSALU18
 
PyCon2009_AI_Alt
PyCon2009_AI_AltPyCon2009_AI_Alt
PyCon2009_AI_AltHiroshi Ono
 
Kotlin for Android Developers - 2
Kotlin for Android Developers - 2Kotlin for Android Developers - 2
Kotlin for Android Developers - 2Mohamed Nabil, MSc.
 
The Easy-Peasy-Lemon-Squeezy, Statically-Typed, Purely Functional Programming...
The Easy-Peasy-Lemon-Squeezy, Statically-Typed, Purely Functional Programming...The Easy-Peasy-Lemon-Squeezy, Statically-Typed, Purely Functional Programming...
The Easy-Peasy-Lemon-Squeezy, Statically-Typed, Purely Functional Programming...John De Goes
 
NTU ML TENSORFLOW
NTU ML TENSORFLOWNTU ML TENSORFLOW
NTU ML TENSORFLOWMark Chang
 
Presentation slides for my simulation course at Dauphine
Presentation slides for my simulation course at DauphinePresentation slides for my simulation course at Dauphine
Presentation slides for my simulation course at DauphineChristian Robert
 
Secure and privacy-preserving data transmission and processing using homomorp...
Secure and privacy-preserving data transmission and processing using homomorp...Secure and privacy-preserving data transmission and processing using homomorp...
Secure and privacy-preserving data transmission and processing using homomorp...DefCamp
 
Memorization of Various Calculator shortcuts
Memorization of Various Calculator shortcutsMemorization of Various Calculator shortcuts
Memorization of Various Calculator shortcutsPrincessNorberte
 
ch05-program-logic-indefinite-loops.ppt
ch05-program-logic-indefinite-loops.pptch05-program-logic-indefinite-loops.ppt
ch05-program-logic-indefinite-loops.pptMahyuddin8
 
Data monsters probablistic data structures
Data monsters probablistic data structuresData monsters probablistic data structures
Data monsters probablistic data structuresGreenM
 
Τα Πολύ Βασικά για την Python
Τα Πολύ Βασικά για την PythonΤα Πολύ Βασικά για την Python
Τα Πολύ Βασικά για την PythonMoses Boudourides
 

Similar to chapter5.pdf (18)

error 2.pdf101316, 6(46 PM01_errorPage 1 of 5http.docx
error 2.pdf101316, 6(46 PM01_errorPage 1 of 5http.docxerror 2.pdf101316, 6(46 PM01_errorPage 1 of 5http.docx
error 2.pdf101316, 6(46 PM01_errorPage 1 of 5http.docx
 
Python
PythonPython
Python
 
PyCon2009_AI_Alt
PyCon2009_AI_AltPyCon2009_AI_Alt
PyCon2009_AI_Alt
 
Kotlin for Android Developers - 2
Kotlin for Android Developers - 2Kotlin for Android Developers - 2
Kotlin for Android Developers - 2
 
The Easy-Peasy-Lemon-Squeezy, Statically-Typed, Purely Functional Programming...
The Easy-Peasy-Lemon-Squeezy, Statically-Typed, Purely Functional Programming...The Easy-Peasy-Lemon-Squeezy, Statically-Typed, Purely Functional Programming...
The Easy-Peasy-Lemon-Squeezy, Statically-Typed, Purely Functional Programming...
 
NTU ML TENSORFLOW
NTU ML TENSORFLOWNTU ML TENSORFLOW
NTU ML TENSORFLOW
 
Numpy - Array.pdf
Numpy - Array.pdfNumpy - Array.pdf
Numpy - Array.pdf
 
Magic 8 ball putting it all together
Magic 8 ball  putting it all togetherMagic 8 ball  putting it all together
Magic 8 ball putting it all together
 
Presentation slides for my simulation course at Dauphine
Presentation slides for my simulation course at DauphinePresentation slides for my simulation course at Dauphine
Presentation slides for my simulation course at Dauphine
 
Secure and privacy-preserving data transmission and processing using homomorp...
Secure and privacy-preserving data transmission and processing using homomorp...Secure and privacy-preserving data transmission and processing using homomorp...
Secure and privacy-preserving data transmission and processing using homomorp...
 
Python Tutorial
Python TutorialPython Tutorial
Python Tutorial
 
Week3
Week3Week3
Week3
 
コード
コードコード
コード
 
Memorization of Various Calculator shortcuts
Memorization of Various Calculator shortcutsMemorization of Various Calculator shortcuts
Memorization of Various Calculator shortcuts
 
ch05-program-logic-indefinite-loops.ppt
ch05-program-logic-indefinite-loops.pptch05-program-logic-indefinite-loops.ppt
ch05-program-logic-indefinite-loops.ppt
 
Data monsters probablistic data structures
Data monsters probablistic data structuresData monsters probablistic data structures
Data monsters probablistic data structures
 
Τα Πολύ Βασικά για την Python
Τα Πολύ Βασικά για την PythonΤα Πολύ Βασικά για την Python
Τα Πολύ Βασικά για την Python
 
C Language Lecture 18
C Language Lecture 18C Language Lecture 18
C Language Lecture 18
 

Recently uploaded

Visionaries Alchemy 2017, Olga Spiegel, Miguel Tio, France Garrido and Bienve...
Visionaries Alchemy 2017, Olga Spiegel, Miguel Tio, France Garrido and Bienve...Visionaries Alchemy 2017, Olga Spiegel, Miguel Tio, France Garrido and Bienve...
Visionaries Alchemy 2017, Olga Spiegel, Miguel Tio, France Garrido and Bienve...BBaez1
 
Reading 8 Artworks about books and readers
Reading 8 Artworks about books and readersReading 8 Artworks about books and readers
Reading 8 Artworks about books and readerssandamichaela *
 
Norco College - M4MH Athlete Pilot - 4.30.24 - Presentation.pdf
Norco College - M4MH Athlete Pilot - 4.30.24 - Presentation.pdfNorco College - M4MH Athlete Pilot - 4.30.24 - Presentation.pdf
Norco College - M4MH Athlete Pilot - 4.30.24 - Presentation.pdfRebeccaPontieri
 
obat aborsi rembang wa 081336238223 jual obat aborsi cytotec asli di rembang9...
obat aborsi rembang wa 081336238223 jual obat aborsi cytotec asli di rembang9...obat aborsi rembang wa 081336238223 jual obat aborsi cytotec asli di rembang9...
obat aborsi rembang wa 081336238223 jual obat aborsi cytotec asli di rembang9...yulianti213969
 
prodtion diary updated.pptxyyghktyuitykiyu
prodtion diary updated.pptxyyghktyuitykiyuprodtion diary updated.pptxyyghktyuitykiyu
prodtion diary updated.pptxyyghktyuitykiyuLeonBraley
 
Santa Monica College - M4MH - 5.13.24 - Presentation.pdf
Santa Monica College - M4MH - 5.13.24 - Presentation.pdfSanta Monica College - M4MH - 5.13.24 - Presentation.pdf
Santa Monica College - M4MH - 5.13.24 - Presentation.pdfRebeccaPontieri
 
obat aborsi Cibitung wa 082223595321 jual obat aborsi cytotec asli di Cibitung
obat aborsi Cibitung wa 082223595321 jual obat aborsi cytotec asli di Cibitungobat aborsi Cibitung wa 082223595321 jual obat aborsi cytotec asli di Cibitung
obat aborsi Cibitung wa 082223595321 jual obat aborsi cytotec asli di Cibitungsiskavia916
 
obat aborsi klaten wa 081336238223 jual obat aborsi cytotec asli di klaten54-...
obat aborsi klaten wa 081336238223 jual obat aborsi cytotec asli di klaten54-...obat aborsi klaten wa 081336238223 jual obat aborsi cytotec asli di klaten54-...
obat aborsi klaten wa 081336238223 jual obat aborsi cytotec asli di klaten54-...yulianti213969
 
Our great adventures in Warsaw - On arrival training
Our great adventures in Warsaw - On arrival trainingOur great adventures in Warsaw - On arrival training
Our great adventures in Warsaw - On arrival trainingAngelaHakobjanyan
 
Green Lantern the Animated Series Practice Boards by Phoebe Holmes.pdf
Green Lantern the Animated Series Practice Boards by Phoebe Holmes.pdfGreen Lantern the Animated Series Practice Boards by Phoebe Holmes.pdf
Green Lantern the Animated Series Practice Boards by Phoebe Holmes.pdfPhoebeHolmes2
 
K_ E_ S_ Retail Store Scavenger Hunt.pptx
K_ E_ S_ Retail Store Scavenger Hunt.pptxK_ E_ S_ Retail Store Scavenger Hunt.pptx
K_ E_ S_ Retail Store Scavenger Hunt.pptxKenSmith311760
 
一比一原版西悉尼大学毕业证(UWS毕业证)成绩单如可办理
一比一原版西悉尼大学毕业证(UWS毕业证)成绩单如可办理一比一原版西悉尼大学毕业证(UWS毕业证)成绩单如可办理
一比一原版西悉尼大学毕业证(UWS毕业证)成绩单如可办理awuboo
 
Big Mouth Season 7 Layout Storyboards by Morgan Pabst
Big Mouth Season 7 Layout Storyboards by Morgan PabstBig Mouth Season 7 Layout Storyboards by Morgan Pabst
Big Mouth Season 7 Layout Storyboards by Morgan PabstMorgan Pabst
 
Rustampura ℂall Girls Service WhatsApp: 8527049040 High Class Esℂorts Serviℂe...
Rustampura ℂall Girls Service WhatsApp: 8527049040 High Class Esℂorts Serviℂe...Rustampura ℂall Girls Service WhatsApp: 8527049040 High Class Esℂorts Serviℂe...
Rustampura ℂall Girls Service WhatsApp: 8527049040 High Class Esℂorts Serviℂe...NightLaila
 
Gloria Marquez Resume 2024pdf.pdf pdfpdf
Gloria Marquez Resume 2024pdf.pdf pdfpdfGloria Marquez Resume 2024pdf.pdf pdfpdf
Gloria Marquez Resume 2024pdf.pdf pdfpdfgmarquez046
 
wepik-mastering-the-art-of-effective-communication-20240222122545I5QF.pptx
wepik-mastering-the-art-of-effective-communication-20240222122545I5QF.pptxwepik-mastering-the-art-of-effective-communication-20240222122545I5QF.pptx
wepik-mastering-the-art-of-effective-communication-20240222122545I5QF.pptxBChella
 
一比一原版(Drexel毕业证书)美国芝加哥城市学院毕业证如何办理
一比一原版(Drexel毕业证书)美国芝加哥城市学院毕业证如何办理一比一原版(Drexel毕业证书)美国芝加哥城市学院毕业证如何办理
一比一原版(Drexel毕业证书)美国芝加哥城市学院毕业证如何办理Fir
 
Museum Quality | PrintAction.pdf
Museum Quality | PrintAction.pdfMuseum Quality | PrintAction.pdf
Museum Quality | PrintAction.pdfVictoria Gaitskell
 
Tagarino_14510147_Assessment 2B ThresholdProcess Journal FINAL.pdf
Tagarino_14510147_Assessment 2B ThresholdProcess Journal FINAL.pdfTagarino_14510147_Assessment 2B ThresholdProcess Journal FINAL.pdf
Tagarino_14510147_Assessment 2B ThresholdProcess Journal FINAL.pdferintagarino1
 

Recently uploaded (20)

Visionaries Alchemy 2017, Olga Spiegel, Miguel Tio, France Garrido and Bienve...
Visionaries Alchemy 2017, Olga Spiegel, Miguel Tio, France Garrido and Bienve...Visionaries Alchemy 2017, Olga Spiegel, Miguel Tio, France Garrido and Bienve...
Visionaries Alchemy 2017, Olga Spiegel, Miguel Tio, France Garrido and Bienve...
 
Reading 8 Artworks about books and readers
Reading 8 Artworks about books and readersReading 8 Artworks about books and readers
Reading 8 Artworks about books and readers
 
Norco College - M4MH Athlete Pilot - 4.30.24 - Presentation.pdf
Norco College - M4MH Athlete Pilot - 4.30.24 - Presentation.pdfNorco College - M4MH Athlete Pilot - 4.30.24 - Presentation.pdf
Norco College - M4MH Athlete Pilot - 4.30.24 - Presentation.pdf
 
batwhls
batwhlsbatwhls
batwhls
 
obat aborsi rembang wa 081336238223 jual obat aborsi cytotec asli di rembang9...
obat aborsi rembang wa 081336238223 jual obat aborsi cytotec asli di rembang9...obat aborsi rembang wa 081336238223 jual obat aborsi cytotec asli di rembang9...
obat aborsi rembang wa 081336238223 jual obat aborsi cytotec asli di rembang9...
 
prodtion diary updated.pptxyyghktyuitykiyu
prodtion diary updated.pptxyyghktyuitykiyuprodtion diary updated.pptxyyghktyuitykiyu
prodtion diary updated.pptxyyghktyuitykiyu
 
Santa Monica College - M4MH - 5.13.24 - Presentation.pdf
Santa Monica College - M4MH - 5.13.24 - Presentation.pdfSanta Monica College - M4MH - 5.13.24 - Presentation.pdf
Santa Monica College - M4MH - 5.13.24 - Presentation.pdf
 
obat aborsi Cibitung wa 082223595321 jual obat aborsi cytotec asli di Cibitung
obat aborsi Cibitung wa 082223595321 jual obat aborsi cytotec asli di Cibitungobat aborsi Cibitung wa 082223595321 jual obat aborsi cytotec asli di Cibitung
obat aborsi Cibitung wa 082223595321 jual obat aborsi cytotec asli di Cibitung
 
obat aborsi klaten wa 081336238223 jual obat aborsi cytotec asli di klaten54-...
obat aborsi klaten wa 081336238223 jual obat aborsi cytotec asli di klaten54-...obat aborsi klaten wa 081336238223 jual obat aborsi cytotec asli di klaten54-...
obat aborsi klaten wa 081336238223 jual obat aborsi cytotec asli di klaten54-...
 
Our great adventures in Warsaw - On arrival training
Our great adventures in Warsaw - On arrival trainingOur great adventures in Warsaw - On arrival training
Our great adventures in Warsaw - On arrival training
 
Green Lantern the Animated Series Practice Boards by Phoebe Holmes.pdf
Green Lantern the Animated Series Practice Boards by Phoebe Holmes.pdfGreen Lantern the Animated Series Practice Boards by Phoebe Holmes.pdf
Green Lantern the Animated Series Practice Boards by Phoebe Holmes.pdf
 
K_ E_ S_ Retail Store Scavenger Hunt.pptx
K_ E_ S_ Retail Store Scavenger Hunt.pptxK_ E_ S_ Retail Store Scavenger Hunt.pptx
K_ E_ S_ Retail Store Scavenger Hunt.pptx
 
一比一原版西悉尼大学毕业证(UWS毕业证)成绩单如可办理
一比一原版西悉尼大学毕业证(UWS毕业证)成绩单如可办理一比一原版西悉尼大学毕业证(UWS毕业证)成绩单如可办理
一比一原版西悉尼大学毕业证(UWS毕业证)成绩单如可办理
 
Big Mouth Season 7 Layout Storyboards by Morgan Pabst
Big Mouth Season 7 Layout Storyboards by Morgan PabstBig Mouth Season 7 Layout Storyboards by Morgan Pabst
Big Mouth Season 7 Layout Storyboards by Morgan Pabst
 
Rustampura ℂall Girls Service WhatsApp: 8527049040 High Class Esℂorts Serviℂe...
Rustampura ℂall Girls Service WhatsApp: 8527049040 High Class Esℂorts Serviℂe...Rustampura ℂall Girls Service WhatsApp: 8527049040 High Class Esℂorts Serviℂe...
Rustampura ℂall Girls Service WhatsApp: 8527049040 High Class Esℂorts Serviℂe...
 
Gloria Marquez Resume 2024pdf.pdf pdfpdf
Gloria Marquez Resume 2024pdf.pdf pdfpdfGloria Marquez Resume 2024pdf.pdf pdfpdf
Gloria Marquez Resume 2024pdf.pdf pdfpdf
 
wepik-mastering-the-art-of-effective-communication-20240222122545I5QF.pptx
wepik-mastering-the-art-of-effective-communication-20240222122545I5QF.pptxwepik-mastering-the-art-of-effective-communication-20240222122545I5QF.pptx
wepik-mastering-the-art-of-effective-communication-20240222122545I5QF.pptx
 
一比一原版(Drexel毕业证书)美国芝加哥城市学院毕业证如何办理
一比一原版(Drexel毕业证书)美国芝加哥城市学院毕业证如何办理一比一原版(Drexel毕业证书)美国芝加哥城市学院毕业证如何办理
一比一原版(Drexel毕业证书)美国芝加哥城市学院毕业证如何办理
 
Museum Quality | PrintAction.pdf
Museum Quality | PrintAction.pdfMuseum Quality | PrintAction.pdf
Museum Quality | PrintAction.pdf
 
Tagarino_14510147_Assessment 2B ThresholdProcess Journal FINAL.pdf
Tagarino_14510147_Assessment 2B ThresholdProcess Journal FINAL.pdfTagarino_14510147_Assessment 2B ThresholdProcess Journal FINAL.pdf
Tagarino_14510147_Assessment 2B ThresholdProcess Journal FINAL.pdf
 

chapter5.pdf