create_precisionRecallSummary {RTextTools} | R Documentation |
creates a summary with precision, recall, and F1 scores.
Description
Creates a summary with precision, recall, and F1 scores for each algorithm broken down by unique label.
Usage
create_precisionRecallSummary(container, classification_results, b_value = 1)
Arguments
container |
Class of type |
classification_results |
A |
b_value |
b-value for generating precision, recall, and F-scores statistics. |
Author(s)
Loren Collingwood, Timothy P. Jurka
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)
precision_recall_f1 <- create_precisionRecallSummary(container, results)
[Package RTextTools version 1.4.3 Index]