Description Usage Arguments Value Author(s) Examples
View source: R/create_analytics.R
Takes the results from functions classify_model
or classify_models
and computes various statistics to help interpret the data.
1 | create_analytics(container, classification_results, b=1)
|
container |
Class of type |
classification_results |
A |
b |
b-value for generating precision, recall, and F-scores statistics. |
Object of class analytics_virgin-class
or analytics-class
has either two or four slots respectively, depending on whether the virgin
flag is set to TRUE
or FALSE
in create_container
. They can be accessed using the @
operator
for S4 classes (e.g. analytics@document_summary
).
Timothy P. Jurka <tpjurka@ucdavis.edu>, Loren Collingwood <lorenc2@uw.edu>
1 2 3 4 5 6 7 8 9 10 | 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)
analytics <- create_analytics(container, results)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.