mda 和 fda 对象是从创建的MDA包,分别用于进行混合判别分析和灵活判别分析。
用法
# S3 method for mda
axe_call(x, verbose = FALSE, ...)
# S3 method for fda
axe_call(x, verbose = FALSE, ...)
# S3 method for mda
axe_env(x, verbose = FALSE, ...)
# S3 method for fda
axe_env(x, verbose = FALSE, ...)
# S3 method for mda
axe_fitted(x, verbose = FALSE, ...)
# S3 method for fda
axe_fitted(x, verbose = FALSE, ...)
例子
library(mda)
#> Loading required package: class
#> Loaded mda 0.5-4
#>
#> Attaching package: ‘mda’
#> The following object is masked from ‘package:parsnip’:
#>
#> mars
mtcars$cyl <- as.factor(mtcars$cyl)
fit <- mda(cyl ~ ., data = mtcars)
out <- butcher(fit, verbose = TRUE)
#> ✔ Memory released: 10.18 kB
#> ✖ Disabled: `print()`, `summary()`, and `update()`
fit2 <- fda(cyl ~ ., data = mtcars)
out2 <- butcher(fit2, verbose = TRUE)
#> ✔ Memory released: 29.82 kB
#> ✖ Disabled: `print()`, `summary()`, and `update()`
# Another mda object
data(glass)
wrapped_mda <- function(fit_fn) {
some_junk_in_environment <- runif(1e6)
fit <- fit_fn(Type ~ ., data = glass)
return(fit)
}
lobstr::obj_size(wrapped_mda(mda))
#> 8.16 MB
lobstr::obj_size(butcher(wrapped_mda(mda)))
#> 29.60 kB
lobstr::obj_size(wrapped_mda(fda))
#> 8.10 MB
lobstr::obj_size(butcher(wrapped_mda(fda)))
#> 15.05 kB
相关用法
- R butcher axe-model_fit 取消 model_fit。
- R butcher axe-multnet 砍掉多网。
- R butcher axe-mass 砍掉 MASS 判别分析对象。
- R butcher axe-flexsurvreg 砍掉一个flexsurvreg。
- R butcher axe-ranger 砍掉一名护林员。
- R butcher axe-ipred 砍倒一棵装袋的树。
- R butcher axe-train.recipe 砍掉一个 train.recipe 对象。
- R butcher axe-terms 取消术语输入。
- R butcher axe-survreg 砍掉一个 survreg。
- R butcher axe-earth 砍伐地球物体。
- R butcher axe-spark 砍掉一个Spark物体。
- R butcher axe-gausspr 砍掉高斯。
- R butcher axe-survreg.penal 取消监管处罚
- R butcher axe-glmnet 砍掉 glmnet。
- R butcher axe-rpart 砍掉一个零件。
- R butcher axe-nnet 砍掉一个网络。
- R butcher axe-formula 取消公式。
- R butcher axe-kknn 砍掉 kknn。
- R butcher axe-bart 砍掉巴特模型。
- R butcher axe-sclass 砍掉一个 sclass 对象。
- R butcher axe-recipe 砍掉一个配方对象。
- R butcher axe-randomForest 砍掉随机森林。
- R butcher axe-gam 砍掉一个游戏。
- R butcher axe-lm 砍掉一部电影。
- R butcher axe-xrf 砍掉 xrf。
注:本文由纯净天空筛选整理自Davis Vaughan等大神的英文原创作品 Axing a mda.。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。