-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrw_visual.py
36 lines (28 loc) · 1018 Bytes
/
rw_visual.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import matplotlib.pyplot as plt
from random_walk import RandomWalk
# Keep making new walks, as long as the program is active.
while True:
# Make a random walk.
rw = RandomWalk(50_000)
rw.fill_walk()
#Plot the points in the walk.
plt.style.use('classic')
fig, ax = plt.subplots()
point_numbers = range(rw.num_points)
ax.scatter(rw.x_values, rw.y_values, c=point_numbers,
cmap=plt.cm.Blues, edgecolors='none', s=1)
#ax.plot(rw.x_values, rw.y_values, linewidth=1)
# Emphasize the first and last points.
ax.scatter(0, 0, c='green', edgecolors='none', s=100)
ax.scatter(rw.x_values[-1], rw.y_values[-1], c='red', edgecolors='none',
s=100)
# Remove the axes.
ax.get_xaxis().set_visible(False)
ax.get_yaxis().set_visible(False)
# Maximize the window.
mng = plt.get_current_fig_manager()
mng.resize(*mng.window.maxsize())
plt.show()
keep_running = input("Make another walk? (y/n): ")
if keep_running == 'n':
break