Skip to content

Commit cf3ecd1

Browse files
committed
update docs for newest release
1 parent 6b9f2df commit cf3ecd1

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

docs/oneside/oneside.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -215,12 +215,12 @@ <h1 class="title">Module <code>toleranceinterval.oneside.oneside</code></h1>
215215
&gt;&gt;&gt; import numpy as np
216216
&gt;&gt;&gt; import toleranceinterval as ti
217217
&gt;&gt;&gt; x = np.random.random(300)
218-
&gt;&gt;&gt; bound = ti.oneside.normal(x, 0.1, 0.95)
218+
&gt;&gt;&gt; bound = ti.oneside.non_parametric(x, 0.1, 0.95)
219219

220220
Estimate the 90th percentile bound with 95% confidence of the
221221
following 300 random samples from a normal distribution.
222222

223-
&gt;&gt;&gt; bound = ti.oneside.normal(x, 0.9, 0.95)
223+
&gt;&gt;&gt; bound = ti.oneside.non_parametric(x, 0.9, 0.95)
224224

225225
&#34;&#34;&#34;
226226
x = numpy_array(x) # check if numpy array, if not make numpy array
@@ -923,11 +923,11 @@ <h2 id="examples">Examples</h2>
923923
<pre><code class="language-python-repl">&gt;&gt;&gt; import numpy as np
924924
&gt;&gt;&gt; import toleranceinterval as ti
925925
&gt;&gt;&gt; x = np.random.random(300)
926-
&gt;&gt;&gt; bound = ti.oneside.normal(x, 0.1, 0.95)
926+
&gt;&gt;&gt; bound = ti.oneside.non_parametric(x, 0.1, 0.95)
927927
</code></pre>
928928
<p>Estimate the 90th percentile bound with 95% confidence of the
929929
following 300 random samples from a normal distribution.</p>
930-
<pre><code class="language-python-repl">&gt;&gt;&gt; bound = ti.oneside.normal(x, 0.9, 0.95)
930+
<pre><code class="language-python-repl">&gt;&gt;&gt; bound = ti.oneside.non_parametric(x, 0.9, 0.95)
931931
</code></pre></div>
932932
<details class="source">
933933
<summary>
@@ -982,12 +982,12 @@ <h2 id="examples">Examples</h2>
982982
&gt;&gt;&gt; import numpy as np
983983
&gt;&gt;&gt; import toleranceinterval as ti
984984
&gt;&gt;&gt; x = np.random.random(300)
985-
&gt;&gt;&gt; bound = ti.oneside.normal(x, 0.1, 0.95)
985+
&gt;&gt;&gt; bound = ti.oneside.non_parametric(x, 0.1, 0.95)
986986

987987
Estimate the 90th percentile bound with 95% confidence of the
988988
following 300 random samples from a normal distribution.
989989

990-
&gt;&gt;&gt; bound = ti.oneside.normal(x, 0.9, 0.95)
990+
&gt;&gt;&gt; bound = ti.oneside.non_parametric(x, 0.9, 0.95)
991991

992992
&#34;&#34;&#34;
993993
x = numpy_array(x) # check if numpy array, if not make numpy array

0 commit comments

Comments
 (0)