zoukankan      html  css  js  c++  java
  • Python编程:从入门到实践

    随机漫游

    # random_flow.py 随机漫游
    
    import random
    
    class RandomFlow():
        """一个生成随机漫游数据的类"""
    
        def __init__(self, num_points=5000):
            self.num_points = num_points
        
            self.x_values = [0]
            self.y_values = [0]
    
        def fill_walk(self):
            while len(self.x_values) < self.num_points:
                # To left or to right
                x_direction = random.choice([1, -1])
                x_distance = random.choice([0, 1, 2, 3, 4])
                x_step = x_direction * x_distance
    
                y_direction = random.choice([1, -1])
                y_distance = random.choice([0, 1, 2, 3, 4])
                y_step = y_direction * y_distance
    
                # must move
                if x_step == 0 and y_step == 0:
                    continue
            
                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)
    # rf_visual.py 实现随机漫游
    
    import matplotlib.pyplot as plt
    import random
    
    from random_flow import RandomFlow
    
    while True:
        rf = RandomFlow()
        rf.fill_walk()
        
        plt.plot(rf.x_values, rf.y_values, color='b', linewidth=1)
    
        plt.title('Random Flow', fontsize=24)
        
        plt.axes().get_xaxis().set_visible(False)
        plt.axes().get_yaxis().set_visible(False)
    
        filename = 'rf_' + str(random.randint(000000, 999999)) + '.png'
        plt.savefig('images/' + filename, bbox_inches='tight')
        
        flag = input('Keep flowing? (Y/N): ')
        if flag.lower() not in ['y', 'yes']:
            break    

    Resistance is Futile!
  • 相关阅读:
    npm使用淘宝镜像源
    MapReduce任务执行源码分析
    spark.sql.shuffle.partitions到底影响什么
    hdfs的写入数据流程及异常情况分析
    面试题
    HDFS的双缓冲机制详解
    rpm包无法卸载
    hive建表支持的文件类型与压缩格式
    centos6中同时安装python3.7与python2.6
    linux centos6.x安装mysql5.6.33版本
  • 原文地址:https://www.cnblogs.com/noonjuan/p/10828330.html
Copyright © 2011-2022 走看看