forked from LIMO-EEG-Toolbox/limo_tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
limo_central_estimator.m
93 lines (82 loc) · 3.2 KB
/
limo_central_estimator.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
function [est,HDI,bb] = limo_central_estimator(Y,estimator,prob_coverage)
% Compute a data estimator and its highest density intervals (HDI) based
% on bayesian bootstrap estimates.
%
% FORMAT [est,HDI,bb] = limo_central_estimator(Y,'estimator',prob_coverage);
%
% INPUTS Y is a 2D matrix, e.g. time frames x participants
% estimator is 'Mean', 'Trimmed mean', (default) 'HD' (Mid-decile Harell-Davis) or 'Median'
% prob_coverage is the probability coverage- default 0.95%
%
% OUTPUT est is the estimator
% ci is the high density interval
% bb is a vector of (Bayes) bootstraped estimators
%
% Bayesian bootstrap implementation based on orignal R code from Rasmus Baath:
% http://www.sumsar.net/blog/2015/07/easy-bayesian-bootstrap-in-r/
% HDI implementation based on original R code HDIofMCMC from John K. Kruschke:
% https://github.com/boboppie/kruschke-doing_bayesian_data_analysis/blob/master/1e/HDIofMCMC.R
%
% see also mean, median, limo_trimmed_mean, limo_harrell_davis
%
% Guillaume Rousselet & Cyril Pernet February 2016
% ------------------------------------------
% Copyright (C) LIMO Team 2016
Nb = 1000; % number of bootstrap samples
if nargin == 2
prob_coverage = 0.95;
elseif nargin == 1
prob_coverage = 0.95;
estimator = 'Trimmed mean';
end
% compute the estimator
if strcmpi(estimator,'Mean')
est = mean(Y,2);
elseif strcmpi(estimator,'Trimmed mean')
est = limo_trimmed_mean(Y,20); % default 20% trimmed mean
elseif strcmpi(estimator,'HD')
est = limo_harrell_davis(Y,.5); % default to estimation of the 5th decile
elseif strcmpi(estimator,'Median')
est = median(Y,2);
end
% sample with replcaement from Dirichlet
% sampling = number of observations, e.g. participants
n=size(Y,2);
bb = zeros(size(Y,1),Nb);
parfor boot=1:Nb % bootstrap loop
theta = exprnd(1,[n,1]);
weigths = theta ./ repmat(sum(theta,1),n,1);
resample = (datasample(Y',n,'Replace',true,'Weights',weigths))';
% compute the estimator
if strcmpi(estimator,'Mean')
bb(:,boot) = mean(resample,2);
elseif strcmpi(estimator,'Trimmed Mean')
bb(:,boot) = limo_trimmed_mean(resample,20);
elseif strcmpi(estimator,'HD')
bb(:,boot) = limo_harrell_davis(resample,.5);
elseif strcmpi(estimator,'Median')
bb(:,boot) = median(resample,2);
end
end
sorted_data = sort(bb,2); % sort bootstrap estimates
upper_centile = floor(prob_coverage*size(sorted_data,2)); % upper bound
nCIs = size(sorted_data,2) - upper_centile;
HDI = zeros(2,size(Y,1));
% for frame = 1:size(Y,1)
% tmp = sorted_data(frame,:);
% ci = 1:nCIs; ciWidth = tmp(ci+upper_centile) - tmp(ci); % all centile distances
% [~,index]=find(ciWidth == min(ciWidth)); % densest centile
% if length(index) > 1; index = index(1); end % many similar values
% HDI(1,frame) = tmp(index);
% HDI(2,frame) = tmp(index+upper_centile);
% end
% vectorized version of the loop above
ci = 1:nCIs;
ciWidth = sorted_data(:,ci+upper_centile) - sorted_data(:,ci); % all centile distances
[~,J] = min(ciWidth,[],2);
r = size(sorted_data,1);
I = (1:r)';
index = I+r.*(J-1); % linear index
HDI(1,:) = sorted_data(index);
index = I+r.*(J+upper_centile-1); % linear index
HDI(2,:) = sorted_data(index);