什么是中位数分裂?它和中位数一样吗?

What is median split? Is it same as median?

在我关注的一篇研究论文中,他们说 "Classes have been derived from scores with a median split"

任何人都可以解释一下这个中位数拆分是否与中位数相同?谢谢:)

中位数拆分是指根据统计中位数(第 50 个百分位数)将一组元素一分为二(即分成两部分)。一组将包含所有大于中位数的元素,另一组将包含所有小于中位数的元素。

因此,如果您有一系列数字(例如从 1 到 6)并且您进行了中位数拆分(此时中位数为 3.5),您实际上会将这一系列数字分成两组:

Group a would be 1, 2, 3

Group b would be 4, 5, 6

你可以看另一个例子here:

For example, we administer a scale of Optimism, and then use a median-split to label the people above the median as Optimists, and those below the median as Pessimists.

从本质上讲,中值拆分并不是中值本身,而是一种使用中值对一组元素执行拆分的技术。