You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
But what's the reason for using 85 for the upper (instead of 75, the upper quartile), when using at the same time 25 (the lower quartile) for the lower limit?
Apparently, someone else had this question as well 😄 :
True, it looks like a typo and it seems I already started to implement a new version of the NodeModel of this node (some years ago...) and was wondering about it too.
For others stumbling upon this: you can easily get a standard boxplot outlier removal (i.e. 1.5-times inter-quartile-range) using an R Snippet node with the following code (without grouping though...):
x = knime.in$"myColumn"
result <- x[!x %in% boxplot.stats(x)$out]
knime.out <- data.frame(result)
The node documentation for Outlier Removal says:
HCS-Tools/de.mpicbg.knime.hcs.base/src/de/mpicbg/knime/hcs/base/nodes/preproc/OutlierRemovalFactory.xml
Lines 40 to 42 in 230d5aa
which is in line with the source code:
HCS-Tools/de.mpicbg.knime.hcs.base/src/de/mpicbg/knime/hcs/base/nodes/preproc/OutlierRemoval.java
Lines 139 to 140 in 230d5aa
But what's the reason for using
85
for the upper (instead of75
, the upper quartile), when using at the same time25
(the lower quartile) for the lower limit?Apparently, someone else had this question as well 😄 :
HCS-Tools/de.mpicbg.knime.hcs.base/src/de/mpicbg/knime/hcs/base/nodes/preproc/OutlierFilterModel.java
Line 96 in 230d5aa
@Meyenhofer any comments on this?
The text was updated successfully, but these errors were encountered: