classify_models {RTextTools} | R Documentation |
makes predictions from a train_models() object.
Description
Uses a trained model from the train_models
function to classify new data.
Usage
classify_models(container, models, ...)
Arguments
container |
Class of type |
models |
List of models to be used for classification generated by |
... |
Other parameters to be passed on to |
Details
Use the list returned by train_models
to use multiple models for classification.
Author(s)
Wouter Van Atteveldt <wouter@vanatteveldt.com>, Timothy P. Jurka <tpjurka@ucdavis.edu>
Examples
library(RTextTools)
data(NYTimes)
data <- NYTimes[sample(1:3100,size=100,replace=FALSE),]
matrix <- create_matrix(cbind(data["Title"],data["Subject"]), language="english",
removeNumbers=TRUE, stemWords=FALSE, weighting=tm::weightTfIdf)
container <- create_container(matrix,data$Topic.Code,trainSize=1:75, testSize=76:100,
virgin=FALSE)
models <- train_models(container, algorithms=c("RF","SVM"))
results <- classify_models(container, models)
[Package RTextTools version 1.4.3 Index]