From 88c386d4407d788679871f4278674189692e7cb1 Mon Sep 17 00:00:00 2001 From: Michael Pilosov Date: Sun, 27 Nov 2022 01:45:31 -0700 Subject: [PATCH] remove graphs --- index.html | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/index.html b/index.html index 48cf117..4659a42 100644 --- a/index.html +++ b/index.html @@ -40,7 +40,6 @@ import pyroulette as pr -import matplotlib.pyplot as plt # seed(59) from random import randint @@ -61,10 +60,7 @@ players = pr.play_roulette(players, games=100) # get the wallet values for all players as a list wallets = [player.wallet for player in players] # plot the wallet values as a histogram -fig, ax = plt.subplots() -ax.hist(wallets, bins=50) -ax.set_yscale("log") -fig +