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