Skip to content

Commit

Permalink
tune the text
Browse files Browse the repository at this point in the history
  • Loading branch information
soulgalore committed Dec 8, 2023
1 parent 99080be commit 5f02dac
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions lib/plugins/compare/pug/index.pug
Original file line number Diff line number Diff line change
Expand Up @@ -21,21 +21,21 @@ p

h2 Settings
p
| The test conducted in this comparison is the #{compare.meta.testOptions.testType} test. The alternative hypothesis used for this test is "#{compare.meta.testOptions.alternative}".
| The test conducted in this comparison is the #{compare.meta.testOptions.testType} test. The alternative hypothesis used for this test is "#{compare.meta.testOptions.alternative}".
if compare.meta.testOptions.alternative === 'less'
| This means that we test if the current test is significant less that the baseline tests.
| This means that we test if the current test is significant less that the baseline tests.
else if compare.meta.testOptions.alternative === 'greater'
| This means that we test if the current test is siginficant higher than the baseline tests.
| This means that we test if the current test is siginficant higher than the baseline tests.
else if compare.meta.testOptions.alternative === 'two-sided'
| This means that we test the baseline vs the current tests both ways, if there are any change in both directions.
| This means that we test the baseline vs the current tests both ways, if there are any change in both directions.
if compare.meta.testOptions.testType === 'mannwhitneyu'
| For more information on the settings of the Mann-Whitney U test, please refer to the
a(href='https://docs.scipy.org/doc/scipy/reference/generated/scipy.stats.mannwhitneyu.html') official documentation.
| The test was configured to use continuity (set to #{compare.meta.testOptions.mannwhitneyu.useContinuity}) and the method chosen was "#{compare.meta.testOptions.mannwhitneyu.method}".
a(href='https://docs.scipy.org/doc/scipy/reference/generated/scipy.stats.mannwhitneyu.html') official documentation.
| The test was configured to use continuity (set to #{compare.meta.testOptions.mannwhitneyu.useContinuity}) and the method chosen was "#{compare.meta.testOptions.mannwhitneyu.method}".
else if compare.meta.testOptions.testType === 'wilcoxon'
| For more information on the settings of the Wilcoxon test, please refer to the
a(href='https://docs.scipy.org/doc/scipy/reference/generated/scipy.stats.wilcoxon.html') official documentation.
| For this test, a correction parameter (#{compare.meta.testOptions.wilcoxon.correction ? 'enabled' : 'disabled'}) was applied to adjust for small sample sizes.
a(href='https://docs.scipy.org/doc/scipy/reference/generated/scipy.stats.wilcoxon.html') official documentation
| . For this test, a correction parameter (#{compare.meta.testOptions.wilcoxon.correction ? 'enabled' : 'disabled'}) was applied to adjust for small sample sizes.


p
Expand Down

0 comments on commit 5f02dac

Please sign in to comment.