Skip to content

Commit d065671

Browse files
committed
update inline docs
1 parent f10b8a3 commit d065671

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

dabest/_classes.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -815,7 +815,7 @@ def __init__(self, control, test, effect_size,
815815
self.__statistic_wilcoxon = wilcoxon.statistic
816816

817817

818-
# Introduced in v0.2.8, removed in v0.2.9 for performance issues.
818+
# Introduced in v0.2.8, removed in v0.3.0 for performance issues.
819819
# lqrt_result = lqrt.lqrtest_rel(control, test,
820820
# random_state=random_seed)
821821
# self.__pvalue_paired_lqrt = lqrt_result.pvalue
@@ -877,7 +877,7 @@ def __init__(self, control, test, effect_size,
877877
# in terms of rank (eg. all zeros.)
878878
pass
879879

880-
# Introduced in v0.2.8, removed in v0.2.9 for performance issues.
880+
# Introduced in v0.2.8, removed in v0.3.0 for performance issues.
881881
# # Likelihood Q-Ratio test:
882882
# lqrt_equal_var_result = lqrt.lqrtest_ind(control, test,
883883
# random_state=random_seed,
@@ -909,7 +909,7 @@ def __init__(self, control, test, effect_size,
909909

910910
def __repr__(self, show_resample_count=True, define_pval=True, sigfig=3):
911911

912-
# # Deprecated in v0.2.9; permutation p-values will be reported by default.
912+
# # Deprecated in v0.3.0; permutation p-values will be reported by default.
913913
# UNPAIRED_ES_TO_TEST = {"mean_diff" : "Mann-Whitney",
914914
# "median_diff" : "Kruskal",
915915
# "cohens_d" : "Mann-Whitney",
@@ -942,7 +942,7 @@ def __repr__(self, show_resample_count=True, define_pval=True, sigfig=3):
942942
out2 = "is {es} [{ci}%CI {bca_low}, {bca_high}].".format(**ci_out)
943943
out = out1 + out2
944944

945-
# # Deprecated in v0.2.9; permutation p-values will be reported by default.
945+
# # Deprecated in v0.3.0; permutation p-values will be reported by default.
946946
# if self.__is_paired:
947947
# stats_test = "Wilcoxon"
948948
# else:
@@ -955,7 +955,7 @@ def __repr__(self, show_resample_count=True, define_pval=True, sigfig=3):
955955

956956
pval_rounded = base_string_fmt.format(self.pvalue_permutation)
957957

958-
# # Deprecated in v0.2.9; permutation p-values will be reported by default.
958+
# # Deprecated in v0.3.0; permutation p-values will be reported by default.
959959
# pvalue = "The two-sided p-value of the {} test is {}.".format(stats_test,
960960
# pval_rounded)
961961

@@ -1221,7 +1221,7 @@ def statistic_mann_whitney(self):
12211221
except AttributeError:
12221222
return npnan
12231223

1224-
# Introduced in v0.2.9.
1224+
# Introduced in v0.3.0.
12251225
@property
12261226
def pvalue_permutation(self):
12271227
return self.__PermutationTest_result.pvalue
@@ -1234,7 +1234,7 @@ def permutation_count(self):
12341234

12351235

12361236

1237-
# Introduced in v0.2.8, removed in v0.2.9 for performance issues.
1237+
# Introduced in v0.2.8, removed in v0.3.0 for performance issues.
12381238
# @property
12391239
# def pvalue_lqrt_paired(self):
12401240
# from numpy import nan as npnan
@@ -1459,7 +1459,7 @@ def __calc_lqrt(self):
14591459
test = dat[dat[xvar] == tname][yvar].copy()
14601460

14611461
if self.__is_paired is True:
1462-
# Refactored here in v0.2.9 for performance issues.
1462+
# Refactored here in v0.3.0 for performance issues.
14631463
lqrt_result = lqrt.lqrtest_rel(control, test,
14641464
random_state=rnd_seed)
14651465

0 commit comments

Comments
 (0)