diff --git a/models/files/awnb.R b/models/files/awnb.R index 2e508facc..4d1826c05 100644 --- a/models/files/awnb.R +++ b/models/files/awnb.R @@ -31,5 +31,5 @@ modelInfo <- list(label = "Naive Bayes Classifier with Attribute Weighting", }, levels = function(x) x$obsLevels, predictors = function(x, s = NULL, ...) x$xNames, - tags = c("Bayesian Model"), + tags = c("Bayesian Model", "Categorical Predictors Only"), sort = function(x) x[order(x[,1]),]) diff --git a/models/files/awtan.R b/models/files/awtan.R index 421484c1f..4d426d972 100644 --- a/models/files/awtan.R +++ b/models/files/awtan.R @@ -27,5 +27,5 @@ modelInfo <- list(label = "Tree Augmented Naive Bayes Classifier with Attribute }, levels = function(x) x$obsLevels, predictors = function(x, s = NULL, ...) x$xNames, - tags = c("Bayesian Model"), + tags = c("Bayesian Model", "Categorical Predictors Only"), sort = function(x) x[order(x[,1]),]) diff --git a/models/files/nbDiscrete.R b/models/files/nbDiscrete.R index b384dcf66..1c6c231ab 100644 --- a/models/files/nbDiscrete.R +++ b/models/files/nbDiscrete.R @@ -30,5 +30,5 @@ modelInfo <- list(label = "Naive Bayes Classifier", }, levels = function(x) x$obsLevels, predictors = function(x, s = NULL, ...) x$xNames, - tags = c("Bayesian Model"), + tags = c("Bayesian Model", "Categorical Predictors Only"), sort = function(x) x[order(x[,1]),]) diff --git a/models/files/nbSearch.R b/models/files/nbSearch.R index 0d42bcbd1..b1d2a6d82 100644 --- a/models/files/nbSearch.R +++ b/models/files/nbSearch.R @@ -48,5 +48,5 @@ modelInfo <- list(label = "Semi-Naive Structure Learner Wrapper", }, levels = function(x) x$obsLevels, predictors = function(x, s = NULL, ...) x$xNames, - tags = c("Bayesian Model"), + tags = c("Bayesian Model", "Categorical Predictors Only"), sort = function(x) x[order(x[,1]),]) diff --git a/models/files/tan.R b/models/files/tan.R index d471ea9e7..4d7186626 100644 --- a/models/files/tan.R +++ b/models/files/tan.R @@ -34,5 +34,5 @@ modelInfo <- list(label = "Tree Augmented Naive Bayes Classifier", }, levels = function(x) x$obsLevels, predictors = function(x, s = NULL, ...) x$xNames, - tags = c("Bayesian Model"), + tags = c("Bayesian Model", "Categorical Predictors Only"), sort = function(x) x[order(x[,1]),]) diff --git a/models/files/tanSearch.R b/models/files/tanSearch.R index 0d85ee873..ffff3169c 100644 --- a/models/files/tanSearch.R +++ b/models/files/tanSearch.R @@ -49,5 +49,5 @@ modelInfo <- list(label = "Tree Augmented Naive Bayes Classifier Structure Learn }, levels = function(x) x$obsLevels, predictors = function(x, s = NULL, ...) x$xNames, - tags = c("Bayesian Model"), + tags = c("Bayesian Model", "Categorical Predictors Only"), sort = function(x) x[order(x[,1]),])