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.
df给定一组存储在列下的数据框中的实数A,以及该集合中的一个元素r,您将如何求解以下“方程” q:
df
A
r
q
r = quantile(df$A, q)
谢谢你的帮助。
在?quantile我们可以阅读
?quantile
也可以看看 ecdf 用于分位数为倒数的经验分布
也可以看看
ecdf 用于分位数为倒数的经验分布
因此:
x <- rnorm(100) r <- quantile(x, 0.05) # 5% #-1.469996 Fn <- ecdf(x) Fn(r) #[1] 0.05