博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
项目 数据可视化5 随机漫步
阅读量:5097 次
发布时间:2019-06-13

本文共 693 字,大约阅读时间需要 2 分钟。

1 import matplotlib.pyplot as plt 2 from random_walk import RandomWalk 3  4 while True: 5  6     rw = RandomWalk() 7     rw.fill_walk() 8     point_numbers = list(range(rw.num_points)) 9     plt.scatter(rw.x_values,rw.y_values,c=point_numbers, cmap=plt.cm.Blues,10 edgecolor='none', s=15)11     plt.scatter(0,0,c='red',edgecolors='none',s=100)12     plt.scatter(rw.x_values[-1],rw.y_values[-1],c='red',edgecolors='none',s=100)13     plt.axes().get_xaxis().set_visible(False)14     plt.axes().get_yaxis().set_visible(False)15     plt.show()16 17     keep_running = input("Make another walk(y/n):")18     if keep_running =="n":19         breaks

 

转载于:https://www.cnblogs.com/zhulvbo/p/8932256.html

你可能感兴趣的文章
Spring 3.x MVC 入门2 -- 通过示例初步感受spring mvc
查看>>
Unique Paths 解答
查看>>
密码技术发展几十年 我们真的安全了吗?
查看>>
workerman需要的php模块posix、pcntl、sysvshm、sysvmsg缺少,怎么办
查看>>
AtCoder Beginner Contest 075 D - Axis-Parallel Rectangle
查看>>
arc 093 D – Grid Components
查看>>
关于C++ STL标准库中map 的多元素应用
查看>>
MSDN资源免费下载 之备份网站
查看>>
Pentium
查看>>
[编织消息框架][netty源码分析]11 ByteBuf 实现类UnpooledHeapByteBuf职责与实现
查看>>
2.理解ASP.NET MVC的执行过程
查看>>
poj - 2186 Popular Cows && poj - 2553 The Bottom of a Graph (强连通)
查看>>
搜狗面经汇总
查看>>
如何在个人博客中插入Jsbin或者jsfiddle代码
查看>>
js实现无缝滚动
查看>>
最新32位和64位xp,win7,win8,win10系统大全(电脑装机版)
查看>>
如何向非技术人(程序猿)解释SQL注入?
查看>>
Convolutional_LSTM论文
查看>>
struts2笔记
查看>>
【NOIP模拟赛】就 反悔贪心
查看>>