產生隨機漫步的類
from random import choice
class RandomWalk():
"""一個生成隨機漫步數(shù)據(jù)的類"""
def __init__(self, num_points=5000):
"""初始化隨機漫步的屬性"""
self.num_points = num_points
#所有隨機漫步都始于(0,0)
self.x_values = [0]
self.y_values = [0]
def fill_walk(self):
"""計算隨機漫步包含所有的點"""
#不斷漫步,直到列表達到指定的長度
while len(self.x_values) < self.num_points:
#決定前進方向以及沿這個方向前進的距離
x_direction = choice([-1, 1])
x_distance = choice([1, 2, 3, 4])
x_step = x_direction * x_distance
y_direction = choice([-1, 1])
y_distance = choice([1, 2, 3, 4])
y_step = y_direction * y_distance
#拒絕原地踏步
if x_step == 0 and y_step == 0:
continue
#計算下一個點的x和y值
next_x = self.x_values[-1] + x_step
next_y = self.y_values[-1] + y_step
self.x_values.append(next_x)
self.y_values.append(next_y)
把圖給繪制出來
import sys
import matplotlib.pyplot as plt
from practice import RandomWalk
sys.path.append('E:\Python\Python 代碼')
#創(chuàng)建一個實例,并將所有的點繪制出來
rw = RandomWalk()
rw.fill_walk()
plt.scatter(rw.x_values, rw.y_values, s=15)
plt.show()
Paste_Image.png
后面的內容還沒看