summary.analytics(RTextTools)
summary.analytics()所属R语言包:RTextTools
summarizes the <a href="analytics-class.html">analytics-class</a> class
总结了<a href="analytics-class.html">分析类</ A>类
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Returns a summary of the contents within an object of class analytics-class.
返回一个对象类analytics-class内的内容摘要。
用法----------Usage----------
## S3 method for class 'analytics'
summary(object, ...)
参数----------Arguments----------
参数:object
An object of class analytics-class containing the output of the create_analytics function.
类的一个对象analytics-class含有create_analytics函数的输出。
参数:...
Additional parameters to be passed onto the summary function.
额外的参数传递到汇总函数。
(作者)----------Author(s)----------
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=weightTfIdf)
container <- create_container(matrix,data$Topic.Code,trainSize=1:75, testSize=76:100,
virgin=FALSE)
models <- train_models(container, algorithms=c("MAXENT","SVM"))
results <- classify_models(container, models)
analytics <- create_analytics(container, results)
summary(analytics)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|