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.
给定 R 中的一个简单数据集,我需要找出它的第 40 个分位数。如何才能做到这一点?
dataset<-rnorm(50e3) quantile(dataset, "40th-quantile")
提前致谢!
这是你要找的吗?
quantile(dataset, 0.4)