ggplot(mtcars, aes(wt, mpg)) + geom_point() + geom_line(aes(y = predict(nlsfit))) モデルと実態の可視化 ブートストラッピングの導入 ブート ...
ggplot(mtcars, aes(wt, mpg)) + geom_point() + geom_line(aes(y = predict(nlsfit))) こんな感じで線が引けます。 ブートストラップは ...
Nonparametric methods form an important core of statistical techniques and are typically used when data do not meet parametric assumptions. Understanding the foundation of these methods, as well as ...