Skip to content

Commit 2e88da1

Browse files
committed
Reversed last commit for further testing
1 parent 2fbc2b3 commit 2e88da1

File tree

4 files changed

+6
-10
lines changed

4 files changed

+6
-10
lines changed

DESCRIPTION

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: statistics-resampling
2-
version: 5.5.19
3-
date: 2024-06-10
2+
version: 5.5.18
3+
date: 2024-06-04
44
author: Andrew Penn <[email protected]>
55
maintainer: Andrew Penn <[email protected]>
66
title: A statistics package with a variety of resampling tools

inst/bootlm.m

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -464,7 +464,6 @@
464464
% - 'PE': Bootstrap estimate of prediction error
465465
% - 'PRESS': Bootstrap estimate of predicted residual error sum of squares
466466
% - 'RSQ_pred': Bootstrap estimate of predicted R-squared
467-
% - 'RL': Relative likelihood compared to the intercept-only model
468467
%
469468
% The linear models evaluated are the same as for AOVSTAT, except that the
470469
% output also includes the statistics for the intercept-only model. Note
@@ -479,7 +478,7 @@
479478
% installed and loaded, then these computations will be automatically
480479
% accelerated by parallel processing on platforms with multiple processors
481480
%
482-
% bootlm (version 2024.06.10)
481+
% bootlm (version 2024.05.17)
483482
% Author: Andrew Charles Penn
484483
% https://www.researchgate.net/profile/Andrew_Penn/
485484
%
@@ -2132,12 +2131,9 @@
21322131
SST = RSS{1}; % Total sum of squares
21332132
PE_RSQ = 1 - PRESS / SST; % Predicted R-squared calculated
21342133
% by refined bootstrap
2135-
RL = exp (-0.5 * (PE - PE(1))); % Relative likelihood (compared
2136-
% to the intercept-only model)
21372134

21382135
% Prepare output
2139-
PRED_ERR = struct ('MODEL', [], 'PE', PE, 'PRESS', PRESS, 'RSQ_pred', ...
2140-
PE_RSQ, 'RL', RL);
2136+
PRED_ERR = struct ('MODEL', [], 'PE', PE, 'PRESS', PRESS, 'RSQ_pred', PE_RSQ);
21412137

21422138
end
21432139

matlab/statistics-resampling.mltbx

-93 Bytes
Binary file not shown.

matlab/statistics-resampling.prj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<deployment-project plugin="plugin.toolbox" plugin-version="1.0">
2-
<configuration build-checksum="2568662598" file="Y:\Documents\GitHub\statistics-resampling\matlab\statistics-resampling.prj" location="Y:\Documents\GitHub\statistics-resampling\matlab" name="statistics-resampling" target="target.toolbox" target-name="Package Toolbox">
2+
<configuration build-checksum="3306453136" file="Y:\Documents\GitHub\statistics-resampling\matlab\statistics-resampling.prj" location="Y:\Documents\GitHub\statistics-resampling\matlab" name="statistics-resampling" target="target.toolbox" target-name="Package Toolbox">
33
<param.appname>statistics-resampling</param.appname>
44
<param.authnamewatermark>Andrew Penn</param.authnamewatermark>
55
<param.email>[email protected]</param.email>
66
<param.company>University of Sussex, UK</param.company>
77
<param.summary>Statistical analysis using resampling methods</param.summary>
88
<param.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.</param.description>
99
<param.screenshot>Y:\Documents\GitHub\statistics-resampling\doc\icon.png</param.screenshot>
10-
<param.version>5.5.19</param.version>
10+
<param.version>5.5.18</param.version>
1111
<param.output>${PROJECT_ROOT}\statistics-resampling.mltbx</param.output>
1212
<param.products.name />
1313
<param.products.id />

0 commit comments

Comments
 (0)