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 では、外れ値を含むベクトル (データ) をどのように生成しますか? データが「許容できる」正規分布である場合に最適です。
これは、「外れ値」の定義に大きく依存します。
c(rnorm(100), 100, -100) # an egregious example plot(density( c( rnorm(90), rnorm(5, 1) ) ) ) # not as egregious