forked from tdamdouni/Pythonista
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathui-for-matplotlib.py
95 lines (78 loc) · 2.23 KB
/
ui-for-matplotlib.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
# https://forum.omz-software.com/topic/3336/ui-for-matplotlib/3
import ui
import matplotlib.pyplot as plt
from random import choice, randint
v = ui.load_view()
v.present('sheet')
def button_tapped(sender):
show_walk()
def fill_x_values(walk_length):
x_values = [0]
points = walk_length
while len(x_values) < points:
x_direction = choice([1, -1])
x_distance = choice([1, 2, 3, 4])
x_step = x_direction * x_distance
next_x = x_values[-1] + x_step
x_values.append(next_x)
return x_values
def fill_y_values(walk_length):
y_values = [0]
points = walk_length
while len(y_values) < points:
y_direction = choice([1, -1])
y_distance = choice([1, 2, 3, 4])
y_step = y_direction * y_distance
next_y = y_values[-1] + y_step
y_values.append(next_y)
return y_values
def show_walk():
walk_length = 50000
x_values = fill_x_values(walk_length)
y_values = fill_x_values(walk_length)
plt.scatter(x_values, y_values,c='red', edgecolor='none', alpha=0.2, s=7)
plt.axes().get_xaxis().set_visible(False)
plt.axes().get_yaxis().set_visible(False)
plt.show()
button = ui.Button()
button.action = button_tapped
# --------------------
import ui
import matplotlib.pyplot as plt
from random import choice, randint
def button_tapped(sender):
button.title = "Tapped!"
show_walk()
def fill_x_values(walk_length):
x_values = [0]
points = walk_length
while len(x_values) < points:
x_direction = choice([1, -1])
x_distance = choice([1, 2, 3, 4])
x_step = x_direction * x_distance
next_x = x_values[-1] + x_step
x_values.append(next_x)
return x_values
def fill_y_values(walk_length):
y_values = [0]
points = walk_length
while len(y_values) < points:
y_direction = choice([1, -1])
y_distance = choice([1, 2, 3, 4])
y_step = y_direction * y_distance
next_y = y_values[-1] + y_step
y_values.append(next_y)
return y_values
def show_walk():
walk_length = 50000
x_values = fill_x_values(walk_length)
y_values = fill_x_values(walk_length)
plt.scatter(x_values, y_values,c='red', edgecolor='none', alpha=0.2, s=7)
plt.axes().get_xaxis().set_visible(False)
plt.axes().get_yaxis().set_visible(False)
plt.show()
button = ui.Button()
button.present()
button.title = "Press here!"
button.action = button_tapped
# --------------------