如何找到两行差异的中位数?
我在 Excel 的两个不同工作表中有两行。每行有 20 个元素。我需要找到这两行中相应元素之差的中位数。我希望这个输出仅在一个单元格中。我不想在结果中添加另一行。
我有:
If Row1 = p1 p2 p3.... p20
If Row2 = q1 q2 q3.... q20
我需要:
result cell = Median of ((p1 - q1), (p2-q2)....(p20-q20))
I have two rows in two different sheets in Excel. Each row has 20 elements. I need to find the median of the difference of the corresponding elements in these two rows. I want this output to be in just one cell. I don't want to add another row in my result.
I have:
If Row1 = p1 p2 p3.... p20
If Row2 = q1 q2 q3.... q20
I need:
result cell = Median of ((p1 - q1), (p2-q2)....(p20-q20))
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是一个数组公式,您必须使用 Ctrl + Shift + Enter 进行验证
[编辑] 包括下面评论中 brettdj 的建议,您可以尝试这个公式也是:
This is an array formula you have to validate with Ctrl + Shift + Enter
[EDIT] Including brettdj's suggestion from the comments below, you can try this formula too: