Identifying if reaction times are 3 standard deviations away from mean

조회 수: 4 (최근 30일)
Rania Hanna
Rania Hanna 2022년 9월 19일
댓글: Rania Hanna 2022년 9월 20일
have a data set of several thousand values.
There are 10 unique subj_indx, 1 through 10. Each one represents an experimental subject. Each subject has a bunch of reaction times, rt.
I am new to Matlab and don't understand how to write for loops. I know I need to run through the entire dataset, and identify outlier reaction time trials, without using isoutlier function. This is because I want to be ale to identify whether each RT trial is > 3 standard deviations away from the mean RT, and then mark that trial in a new vector as "1", otherwise, mark it as "0."
I know Matlab has standard deviation and mean functinos, but am not sure how to connect everything together for this code.
I don't know where to start other than:
rt=subject_data.rt;
for id = 1:length(subj_idx)%loop for each unique id value
%rtIdx = 1:length(rt)
currentid = rt(rtIdx);
rtIdx = 0;
and I'm not sure even that's correct.
  댓글 수: 4
Steven Lord
Steven Lord 2022년 9월 20일
See the description of the "mean" method on that isoutlier documentation page to which I linked.

댓글을 달려면 로그인하십시오.

답변 (2개)

Chunru
Chunru 2022년 9월 20일
편집: Chunru 2022년 9월 20일
% rt=subject_data.rt;
rt = randn(300, 1) * 3 + 1; % genate some random data
mu = mean(rt)
mu = 1.2843
sigma = std(rt)
sigma = 3.0914
idx = abs((rt-mu)) > 1*sigma; % use 3 sigma when samples are large
[rt idx]
ans = 300×2
2.6351 0 -0.5263 0 -1.5895 0 2.5097 0 4.4268 1.0000 1.5017 0 -3.1915 1.0000 -1.7580 0 1.9555 0 1.5195 0

Steven Lord
Steven Lord 2022년 9월 20일
Take a look at the "mean" method for the isoutlier function.

카테고리

Help CenterFile Exchange에서 Programming에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by