Skip to content

Commit

Permalink
🐛 Fix wrong import in readme
Browse files Browse the repository at this point in the history
  • Loading branch information
Kaleidophon committed Mar 25, 2021
1 parent 944ff61 commit dcbe2d5
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ aso(a, b) # It just works!
Should you be suspicious of ASO and want to revert to the good old faithful tests, this package also implements
the paired-bootstrap as well as the permutation randomization test. Note that as discussed in the next section, these
tests have less statistical power than ASO. Furthermore, a function for the Bonferroni-correction using
p-values can also be found using `from aso import bonferroni_correction`.
p-values can also be found using `from deepsig import bonferroni_correction`.

```python3
import numpy as np
Expand Down
2 changes: 1 addition & 1 deletion README_RAW.md
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ aso(a, b) # It just works!
Should you be suspicious of ASO and want to revert to the good old faithful tests, this package also implements
the paired-bootstrap as well as the permutation randomization test. Note that as discussed in the next section, these
tests have less statistical power than ASO. Furthermore, a function for the Bonferroni-correction using
p-values can also be found using `from aso import bonferroni_correction`.
p-values can also be found using `from deepsig import bonferroni_correction`.

```python3
import numpy as np
Expand Down
2 changes: 1 addition & 1 deletion docs/README_DOCS.md
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ aso(a, b) # It just works!
Should you be suspicious of ASO and want to revert to the good old faithful tests, this package also implements
the paired-bootstrap as well as the permutation randomization test. Note that as discussed in the next section, these
tests have less statistical power than ASO. Furthermore, a function for the Bonferroni-correction using
p-values can also be found using `from aso import bonferroni_correction`.
p-values can also be found using `from deepsig import bonferroni_correction`.

```python3
import numpy as np
Expand Down
2 changes: 1 addition & 1 deletion docs/build/html/README_DOCS.html
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@ <h4>|:game_die:| Permutation and bootstrap test<a class="headerlink" href="#game
<p>Should you be suspicious of ASO and want to revert to the good old faithful tests, this package also implements
the paired-bootstrap as well as the permutation randomization test. Note that as discussed in the next section, these
tests have less statistical power than ASO. Furthermore, a function for the Bonferroni-correction using
p-values can also be found using <code class="docutils literal notranslate"><span class="pre">from</span> <span class="pre">aso</span> <span class="pre">import</span> <span class="pre">bonferroni_correction</span></code>.</p>
p-values can also be found using <code class="docutils literal notranslate"><span class="pre">from</span> <span class="pre">deepsig</span> <span class="pre">import</span> <span class="pre">bonferroni_correction</span></code>.</p>
<div class="highlight-python3 notranslate"><div class="highlight"><pre><span></span><span class="kn">import</span> <span class="nn">numpy</span> <span class="k">as</span> <span class="nn">np</span>
<span class="kn">from</span> <span class="nn">deepsig</span> <span class="kn">import</span> <span class="n">bootstrap_test</span><span class="p">,</span> <span class="n">permutation_test</span>

Expand Down
2 changes: 1 addition & 1 deletion docs/build/html/_sources/README_DOCS.md.txt
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ aso(a, b) # It just works!
Should you be suspicious of ASO and want to revert to the good old faithful tests, this package also implements
the paired-bootstrap as well as the permutation randomization test. Note that as discussed in the next section, these
tests have less statistical power than ASO. Furthermore, a function for the Bonferroni-correction using
p-values can also be found using `from aso import bonferroni_correction`.
p-values can also be found using `from deepsig import bonferroni_correction`.

```python3
import numpy as np
Expand Down
2 changes: 1 addition & 1 deletion docs/build/html/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ <h2>✨ Other features<a class="headerlink" href="#sparkles-other-features" titl
<p>Should you be suspicious of ASO and want to revert to the good old faithful tests, this package also implements
the paired-bootstrap as well as the permutation randomization test. Note that as discussed in the next section, these
tests have less statistical power than ASO. Furthermore, a function for the Bonferroni-correction using
p-values can also be found using <code class="docutils literal notranslate"><span class="pre">from</span> <span class="pre">aso</span> <span class="pre">import</span> <span class="pre">bonferroni_correction</span></code>.</p>
p-values can also be found using <code class="docutils literal notranslate"><span class="pre">from</span> <span class="pre">deepsig</span> <span class="pre">import</span> <span class="pre">bonferroni_correction</span></code>.</p>
<div class="highlight-python3 notranslate"><div class="highlight"><pre><span></span><span class="kn">import</span> <span class="nn">numpy</span> <span class="k">as</span> <span class="nn">np</span>
<span class="kn">from</span> <span class="nn">deepsig</span> <span class="kn">import</span> <span class="n">bootstrap_test</span><span class="p">,</span> <span class="n">permutation_test</span>

Expand Down

0 comments on commit dcbe2d5

Please sign in to comment.