Commit fc956704 authored by 王志伟's avatar 王志伟

数据指标波动假设检验统计

parent 27276aa6
......@@ -99,17 +99,17 @@ def t_test(x,y): #进行t检验
t_p_value=t_test[1]
# print(t_p_value)
if t_p_value>0.05:
print("策略前后两组数据无显著性差异,即该指标没有显著提升,p_value:" % t_p_value)
print("策略前后两组数据无显著性差异,即该指标没有显著提升,p_value:{}" .format(t_p_value))
else:
print("策略前后两组数据有显著性差异,即该指标获得显著提升,p_value:" % t_p_value)
print("策略前后两组数据有显著性差异,即该指标获得显著提升,p_value:{}" .format(t_p_value))
else: #认为数据方差不具有齐性,equal_var=false
t_test = ttest_ind(x, y, equal_var=False)
t_p_value = t_test[1]
# print(t_p_value)
if t_p_value > 0.05:
print("策略前后两组数据无显著性差异,即该指标没有显著提升,p_value:" % t_p_value)
print("策略前后两组数据无显著性差异,即该指标没有显著提升,p_value:{}" .format(t_p_value))
else:
print("策略前后两组数据有显著性差异,即该指标获得显著提升,p_value:" % t_p_value)
print("策略前后两组数据有显著性差异,即该指标获得显著提升,p_value:{}" .format(t_p_value))
#
# ###假设检验,判断是否具有显著性
#
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment