2.13生成可控的随机数据集合 通过正态分布 模拟虚拟价格增长数据
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了2.13生成可控的随机数据集合 通过正态分布 模拟虚拟价格增长数据相关的知识,希望对你有一定的参考价值。
模拟色子 import pylab import random duration= 100 mean_inc= 0.2 std_dev_inc= 1.2 x=range(duration) y=[] pricetoday = 0 for i in x: next_data = random.normalvariate(mean_inc, std_dev_inc) pricetoday += next_data y.append(pricetoday) pylab.plot(x, y) pylab.xlabel("time") pylab.ylabel("value") pylab.show() #通过正态分布 模拟虚拟价格增长数据
以上是关于2.13生成可控的随机数据集合 通过正态分布 模拟虚拟价格增长数据的主要内容,如果未能解决你的问题,请参考以下文章