scipy.stats.rv_histogram.
scipy.stats.rv_histogram.random_state#
- property rv_histogram.random_state#
获取或设置用于生成随机变量的生成器对象。
如果
random_state
为 None(或 np.random),则使用numpy.random.RandomState
单例。如果random_state
是一个整数,则使用一个新的RandomState
实例,并使用random_state
作为种子。如果random_state
已经是Generator
或RandomState
实例,则使用该实例。