exceptionalScore(x, prob = 0.025, both = TRUE, silent = FALSE, quantileCorrection = 1e-04, quantileType = 8)
prob
or higher than 1-prob
are
considered exceptional (if both is TRUE, at least). So, note that a prob
of .025 means that if both=TRUE, the most exceptional 5% of the values is
marked as such.
prob
as well
as above 1-prob
, or whether to only consider values exceptional if
they're below prob
is prob
is < .5, or above prob
if
prob
> .5.
quantile
.
prob
of 2*prob
percent of the
values is exceptional, so it is usually not a wise idea to remove scores based
on their 'exceptionalness'. Instead, use exceptionalScores
,
which calls this function, to see how often participants answered
exceptionally, and remove them based on that.
quantile
, exceptionalScores
exceptionalScore(c(1,1,2,2,2,3,3,3,4,4,4,5,5,5,5,6,6,7,8,20), prob=.05);
Run the code above in your browser using DataLab