Python 计算置信区间 Python 计算置信区间用Python实现http://vassarstats.net/prop1.html 所计算的置信区间import math#计算置信区间的函数def calc(r,n): if n < r : print ('r cannot be greater than n.') return if math.floor Python 2024-07-21 27 点赞 0 评论 40 浏览