Skip to content

Commit 9e765cc

Browse files
committed
update online manual ahead of imminent release of version 5.6.0
1 parent 2b6a4b2 commit 9e765cc

29 files changed

+245
-128
lines changed

README.html

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,11 @@ <h3 id="description">Description</h3>
3333
toolbox that can be used to perform a wide variety of statistics tasks
3434
using non-parametric resampling methods. In particular, the functions
3535
included can be used to estimate bias, uncertainty (standard errors and
36-
confidence intervals), prediction error, and calculate <em>p</em>-values
37-
for null hypothesis significance tests. Variations of the resampling
38-
methods are included that improve the accuracy of the statistics for
39-
small samples and samples with complex dependence structures.</p>
36+
confidence intervals), prediction error, information criteria, and
37+
calculate <em>p</em>-values for null hypothesis significance tests.
38+
Variations of the resampling methods are included that improve the
39+
accuracy of the statistics for small samples and samples with complex
40+
dependence structures.</p>
4041
<h3 id="using-the-statistics-resampling-package-online">Using the
4142
statistics-resampling package online</h3>
4243
<p>Try out the statistics-resampling package in your browser at <a
@@ -249,6 +250,10 @@ <h3 id="quick-start">Quick start</h3>
249250
href="https://gnu-octave.github.io/statistics-resampling/function/sampszcalc.html#6">Correcting
250251
sample size calculations for a two-sample test with nested
251252
design</a></p></li>
253+
<li><p><a
254+
href="https://gnu-octave.github.io/statistics-resampling/function/bootlm.html#15">Comparing
255+
linear models using bootstrap estimates of prediction error, information
256+
criteria and relative likelihood</a></p></li>
252257
</ul>
253258
<p>For examples of how to import data sets from a human-readable text
254259
file, like a tab-separated-value (TSV) and comma-separated-value (CSV)

docs/copying.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
44
<head>
55
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
6-
<meta name="date" content="2024-06-04"/>
6+
<meta name="date" content="2024-06-17"/>
77
<meta name="generator" content="generate_html 0.3.3" />
88
<meta name="author" content="Andrew Penn" />
99
<meta name="description" content="A package for statistical analysis using resampling methods." />

docs/description.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"generator": "generate_html",
33
"generator_version": "0.3.3",
4-
"date_generated": "2024-06-04",
4+
"date_generated": "2024-06-17",
55
"package":
66
{
77
"name": "statistics-resampling",
8-
"version": "5.5.18",
9-
"description": "The statistics-resampling package is an Octave package and Matlab toolbox that can be used to perform a wide variety of statistics tasks using non-parametric resampling methods. In particular, the functions included can be used to estimate bias, uncertainty (standard errors and confidence intervals), prediction error, and calculate p-values for null hypothesis significance tests. Variations of the resampling methods are included that improve the accuracy of the statistics for small samples and samples with complex dependence structures.",
8+
"version": "5.6.0",
9+
"description": "The statistics-resampling package is an Octave package and Matlab toolbox that can be used to perform a wide variety of statistics tasks using non-parametric resampling methods. In particular, the functions included can be used to estimate bias, uncertainty (standard errors and confidence intervals), prediction error, information criteria, and calculate p-values for null hypothesis significance tests. Variations of the resampling methods are included that improve the accuracy of the statistics for small samples and samples with complex dependence structures.",
1010
"shortdescription": "The statistics-resampling package is an Octave package and Matlab toolbox that can be used to perform a wide variety of statistics tasks using non-parametric resampling methods",
11-
"date": "2024-06-04",
11+
"date": "2024-06-17",
1212
"title": "A statistics package with a variety of resampling tools",
1313
"author": "Andrew Penn <andy.c.penn@gmail.com>",
1414
"maintainer": "Andrew Penn <andy.c.penn@gmail.com>",

docs/function/boot.html

Lines changed: 41 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
44
<head>
55
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
6-
<meta name="date" content="2024-06-04"/>
6+
<meta name="date" content="2024-06-17"/>
77
<meta name="generator" content="generate_html 0.3.3" />
88
<meta name="author" content="Andrew Penn" />
99
<meta name="description" content="A package for statistical analysis using resampling methods." />
@@ -116,17 +116,17 @@ <h3><a name="1">Demonstration 1</a></h3>
116116
<p>Produces the following output</p>
117117
<pre class="example">ans =
118118

119-
Columns 1 through 11:
119+
Columns 1 through 12:
120120

121-
2 3 3 2 2 2 1 1 3 1 3
122-
3 1 3 1 2 3 2 2 2 1 2
123-
2 1 3 3 2 1 2 3 1 2 1
121+
2 3 3 2 2 2 1 1 3 1 3 3
122+
3 1 3 1 2 3 2 2 2 1 2 1
123+
2 1 3 3 2 1 2 3 1 2 1 2
124124

125-
Columns 12 through 20:
125+
Columns 13 through 20:
126126

127-
3 2 1 2 2 3 3 1 1
128-
1 2 2 3 3 1 1 3 3
129-
2 3 1 1 1 2 3 3 1</pre>
127+
2 1 2 2 3 3 1 1
128+
2 2 3 3 1 1 3 3
129+
3 1 1 1 2 3 3 1</pre>
130130
</div>
131131

132132
<h3><a name="2">Demonstration 2</a></h3>
@@ -139,17 +139,17 @@ <h3><a name="2">Demonstration 2</a></h3>
139139
<p>Produces the following output</p>
140140
<pre class="example">ans =
141141

142-
Columns 1 through 11:
142+
Columns 1 through 12:
143143

144-
2 3 2 2 3 1 3 1 2 2 1
145-
2 1 1 2 3 2 2 1 1 3 3
146-
3 3 1 2 3 1 3 1 2 2 3
144+
2 3 2 2 3 1 3 1 2 2 1 2
145+
2 1 1 2 3 2 2 1 1 3 3 1
146+
3 3 1 2 3 1 3 1 2 2 3 2
147147

148-
Columns 12 through 20:
148+
Columns 13 through 20:
149149

150-
2 2 3 1 2 1 2 3 3
151-
1 3 3 1 2 1 1 1 2
152-
2 3 1 1 3 3 1 3 2</pre>
150+
2 3 1 2 1 2 3 3
151+
3 3 1 2 1 1 1 2
152+
3 1 1 3 3 1 3 2</pre>
153153
</div>
154154

155155
<h3><a name="3">Demonstration 3</a></h3>
@@ -164,45 +164,45 @@ <h3><a name="3">Demonstration 3</a></h3>
164164
<p>Produces the following output</p>
165165
<pre class="example">ans =
166166

167-
Columns 1 through 11:
167+
Columns 1 through 12:
168168

169-
3 3 3 3 1 2 3 3 1 1 2
170-
3 1 2 2 3 1 3 1 2 2 3
171-
3 2 3 1 3 1 1 1 3 1 2
169+
3 3 3 3 1 2 3 3 1 1 2 2
170+
3 1 2 2 3 1 3 1 2 2 3 3
171+
3 2 3 1 3 1 1 1 3 1 2 3
172172

173-
Columns 12 through 20:
173+
Columns 13 through 20:
174174

175-
2 1 2 2 2 1 2 1 1
176-
3 2 3 3 3 3 1 1 2
177-
3 2 1 2 2 2 1 2 1
175+
1 2 2 2 1 2 1 1
176+
2 3 3 3 3 1 1 2
177+
2 1 2 2 2 1 2 1
178178

179179
ans =
180180

181-
Columns 1 through 11:
181+
Columns 1 through 12:
182182

183-
3 3 3 3 1 2 3 3 1 1 2
184-
3 1 2 2 3 1 3 1 2 2 3
185-
3 2 3 1 3 1 1 1 3 1 2
183+
3 3 3 3 1 2 3 3 1 1 2 2
184+
3 1 2 2 3 1 3 1 2 2 3 3
185+
3 2 3 1 3 1 1 1 3 1 2 3
186186

187-
Columns 12 through 20:
187+
Columns 13 through 20:
188188

189-
2 1 2 2 2 1 2 1 1
190-
3 2 3 3 3 3 1 1 2
191-
3 2 1 2 2 2 1 2 1
189+
1 2 2 2 1 2 1 1
190+
2 3 3 3 3 1 1 2
191+
2 1 2 2 2 1 2 1
192192

193193
ans =
194194

195-
Columns 1 through 11:
195+
Columns 1 through 12:
196196

197-
3 2 2 3 2 3 1 2 2 3 1
198-
1 3 1 1 2 3 3 3 1 2 1
199-
1 3 3 1 1 1 2 3 2 2 2
197+
3 2 2 3 2 3 1 2 2 3 1 2
198+
1 3 1 1 2 3 3 3 1 2 1 1
199+
1 3 3 1 1 1 2 3 2 2 2 1
200200

201-
Columns 12 through 20:
201+
Columns 13 through 20:
202202

203-
2 3 1 2 3 2 3 2 3
204-
1 2 1 3 1 1 3 3 2
205-
1 2 3 3 1 1 2 2 1</pre>
203+
3 1 2 3 2 3 2 3
204+
2 1 3 1 1 3 3 2
205+
2 3 3 1 1 2 2 1</pre>
206206
</div>
207207

208208
<h3><a name="4">Demonstration 4</a></h3>

docs/function/boot1way.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
44
<head>
55
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
6-
<meta name="date" content="2024-06-04"/>
6+
<meta name="date" content="2024-06-17"/>
77
<meta name="generator" content="generate_html 0.3.3" />
88
<meta name="author" content="Andrew Penn" />
99
<meta name="description" content="A package for statistical analysis using resampling methods." />
@@ -529,7 +529,7 @@ <h3><a name="7">Demonstration 7</a></h3>
529529
-----------------------------------------------------------------------------
530530
| Comparison | Test # | Ref # | Difference | t | p |
531531
|------------|------------|------------|------------|------------|----------|
532-
| 1 | 2 | 1 | -0.3210 | -0.67 | .479 |
532+
| 1 | 2 | 1 | +0.2983 | +0.76 | .418 |
533533

534534
-----------------------------------------------------------------------------
535535
| GROUP # | GROUP label | N |
@@ -574,7 +574,7 @@ <h3><a name="8">Demonstration 8</a></h3>
574574
-----------------------------------------------------------------------------
575575
| Comparison | Test # | Ref # | Difference | t | p |
576576
|------------|------------|------------|------------|------------|----------|
577-
| 1 | 2 | 1 | +0.7003 | +0.63 | .424 |
577+
| 1 | 2 | 1 | +0.6071 | +0.72 | .410 |
578578

579579
-----------------------------------------------------------------------------
580580
| GROUP # | GROUP label | N |

docs/function/bootbayes.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
44
<head>
55
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
6-
<meta name="date" content="2024-06-04"/>
6+
<meta name="date" content="2024-06-17"/>
77
<meta name="generator" content="generate_html 0.3.3" />
88
<meta name="author" content="Andrew Penn" />
99
<meta name="description" content="A package for statistical analysis using resampling methods." />

docs/function/bootcdf.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
44
<head>
55
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
6-
<meta name="date" content="2024-06-04"/>
6+
<meta name="date" content="2024-06-17"/>
77
<meta name="generator" content="generate_html 0.3.3" />
88
<meta name="author" content="Andrew Penn" />
99
<meta name="description" content="A package for statistical analysis using resampling methods." />

docs/function/bootci.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
44
<head>
55
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
6-
<meta name="date" content="2024-06-04"/>
6+
<meta name="date" content="2024-06-17"/>
77
<meta name="generator" content="generate_html 0.3.3" />
88
<meta name="author" content="Andrew Penn" />
99
<meta name="description" content="A package for statistical analysis using resampling methods." />
@@ -468,8 +468,8 @@ <h3><a name="10">Demonstration 10</a></h3>
468468
<p>Produces the following output</p>
469469
<pre class="example">ci =
470470

471-
-0.43651 -0.55144
472-
0.52378 0.24516</pre>
471+
-0.98411 -0.40983
472+
0.0042385 0.59364</pre>
473473
</div>
474474

475475
<h3><a name="11">Demonstration 11</a></h3>

docs/function/bootclust.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
44
<head>
55
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
6-
<meta name="date" content="2024-06-04"/>
6+
<meta name="date" content="2024-06-17"/>
77
<meta name="generator" content="generate_html 0.3.3" />
88
<meta name="author" content="Andrew Penn" />
99
<meta name="description" content="A package for statistical analysis using resampling methods." />
@@ -376,8 +376,8 @@ <h3><a name="7">Demonstration 7</a></h3>
376376

377377
Bootstrap Statistics:
378378
original bias std_error CI_lower CI_upper
379-
-0.03417 -0.001008 +0.2100 -0.3711 +0.3182
380-
+0.1006 +0.0007326 +0.1678 -0.1282 +0.4366</pre>
379+
+0.4343 +0.02138 +0.1987 +0.09026 +0.7387
380+
-0.04215 -0.01144 +0.1783 -0.2999 +0.2813</pre>
381381
</div>
382382

383383
<h3><a name="8">Demonstration 8</a></h3>
@@ -406,8 +406,8 @@ <h3><a name="8">Demonstration 8</a></h3>
406406

407407
Bootstrap Statistics:
408408
original bias std_error CI_lower CI_upper
409-
+0.4141 -0.02314 +0.1388 +0.1821 +0.6245
410-
+0.4913 -0.01465 +0.1777 +0.2410 +0.8309</pre>
409+
-0.3787 -0.01284 +0.2265 -0.7786 -0.03176
410+
+0.2357 +0.03278 +0.1780 +0.008442 +0.5824</pre>
411411
</div>
412412

413413
<h3><a name="9">Demonstration 9</a></h3>

docs/function/bootint.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
44
<head>
55
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
6-
<meta name="date" content="2024-06-04"/>
6+
<meta name="date" content="2024-06-17"/>
77
<meta name="generator" content="generate_html 0.3.3" />
88
<meta name="author" content="Andrew Penn" />
99
<meta name="description" content="A package for statistical analysis using resampling methods." />

0 commit comments

Comments
 (0)