Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要在 JMP 中找到数据表的数据属性的前 20%。Excel 有一个自上而下的规则,可以帮助找到相同的内容,但 JMP 没有。无论如何要计算 JMP 中列的前 20% 吗?
您可以使用该Col Quantile函数来获取对应于任何百分位数的值。前 20% 的截止值是:
Col Quantile
Col Quantile(:Calories, 0.8);
0.5 将是中位数。