闪亮的随机森林
基于shiny的随机森林,使用到了shiny 、 randomForest 、 shinyAce 、 rmarkdown 、 ggplot2等R包,使用方法为:
if ( ! require( shiny )) {
install.packages( pkgs = ' shiny ' , quiet = TRUE )
require( shiny )
}
if ( ! require( randomForest )) {
install.packages( pkgs = ' randomForest ' , quiet = TRUE )
require( randomForest )
}
if ( ! require( shinyAce )) {
install.packages( pkgs = ' shinyAce ' , quiet = TRUE
2021-10-13 09:39:34
8KB
R
1