以下示例是关于Python中包含numpy计算标准差用法的示例代码,想了解numpy计算标准差的具体用法?numpy计算标准差怎么用?numpy计算标准差使用的例子?那么可以参考以下相关源代码片段来学习它的具体使用方法。
import numpy
numbers = [1,5,6,7,9,11,13]
standard = numpy.std(numbers) #Calculates standard deviation
print(standard)
本文地址:https://www.itbaoku.cn/snippets/785265.html