Skip to content

Instantly share code, notes, and snippets.

@FinancialRADDeveloper
FinancialRADDeveloper / calc_pi.py
Created March 23, 2020 14:49
PiMutliCarlo Gist
from random import random
def calc_pi_quick(num_attempts: int) -> float:
from random import random
inside = 0
for _ in range(num_attempts):
x = random()
y = random()
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
import math
def calc_pi(num_attempts, display_plot=False):
import matplotlib
import matplotlib.pyplot as plt
from random import random
inside = 0
@FinancialRADDeveloper
FinancialRADDeveloper / GoogleMusicTakeoutActivityAnalysis.ipynb
Created October 3, 2019 23:40
Head() of Google Takeout Activity JSON
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@FinancialRADDeveloper
FinancialRADDeveloper / GoogleMusicTakeoutTrackAnalysis.ipynb
Created September 23, 2019 08:22
GoogleMusicTakeoutTrackAnalysis
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.