如何用R语言计算分位数? 我一直在寻找解决方案,但该网站称分位数= p *(n + 1),其中p是百分比ani n是数据集中的行数。 我没有得到正确的答案。 谁能帮我。
答案 0 :(得分:0)
尝试一下:
x <- rnorm(100) # sample data
quantile(x) # quartiles
quantile(x, c(0.1, 0.9)) # 10th and 90th centiles
有多种方法可以找到有关如何在R中进行操作的方法,例如入门书籍(许多在线书籍,例如https://cran.r-project.org/other-docs.html)和简单功能(例如apropos
和RSiteSearch
:
apropos("foo") # gives you a list of functions that have "foo" in their name