@@ -215,12 +215,12 @@ <h1 class="title">Module <code>toleranceinterval.oneside.oneside</code></h1>
215215 >>> import numpy as np
216216 >>> import toleranceinterval as ti
217217 >>> x = np.random.random(300)
218- >>> bound = ti.oneside.normal (x, 0.1, 0.95)
218+ >>> 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- >>> bound = ti.oneside.normal (x, 0.9, 0.95)
223+ >>> bound = ti.oneside.non_parametric (x, 0.9, 0.95)
224224
225225 """
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 "> >>> import numpy as np
924924>>> import toleranceinterval as ti
925925>>> x = np.random.random(300)
926- >>> bound = ti.oneside.normal (x, 0.1, 0.95)
926+ >>> 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
929929following 300 random samples from a normal distribution.</ p >
930- < pre > < code class ="language-python-repl "> >>> bound = ti.oneside.normal (x, 0.9, 0.95)
930+ < pre > < code class ="language-python-repl "> >>> 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 >>> import numpy as np
983983 >>> import toleranceinterval as ti
984984 >>> x = np.random.random(300)
985- >>> bound = ti.oneside.normal (x, 0.1, 0.95)
985+ >>> 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- >>> bound = ti.oneside.normal (x, 0.9, 0.95)
990+ >>> bound = ti.oneside.non_parametric (x, 0.9, 0.95)
991991
992992 """
993993 x = numpy_array(x) # check if numpy array, if not make numpy array
0 commit comments