-
Notifications
You must be signed in to change notification settings - Fork 0
/
rw_visual.py
31 lines (23 loc) · 919 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
import matplotlib.pyplot as plt
from random_walk import RandomWalk
#Keep making new walks, as long as the progra is active.
while True:
#Make a random walk, and plot the points.
rw = RandomWalk(50000)
rw.fill_walk()
#Set the size of the plotting window.
plt.figure(dpi=128, figsize=(10,6))
point_numbers = list(range(rw.num_points))
plt.scatter(rw.x_values, rw.y_values, c=point_numbers, cmap=plt.cm.Blues,
edgecolor='none', s = 1)
#Emphasize the first and last points.
plt.scatter(0, 0, c='green', edgecolors='none', s=100)
plt.scatter(rw.x_values[-1], rw.y_values[-1], c='red', edgecolors='none',
s=100)
#Reove the axes.
plt.axes().get_xaxis().set_visible(False)
plt.axes().get_yaxis().set_visible(False)
plt.show()
keep_running = input("Make another walk? (y/n): ")
if keep_running == 'n':
break