R/screen_topics_progress-methods.R

Defines functions summary.screen_topics_progress

Documented in summary.screen_topics_progress

# methods for class(screen_topics_progress)
summary.screen_topics_progress <- function(object, ...){
cat(
	paste0("screen_topics_progress object containing 7 entries including:\n
    raw = data on ",
		  nrow(object$raw),
		  " citations sent to screen_topics()\n
    grouped = raw data grouped into ",
      nrow(object$grouped),
      " unique ",
      colnames(object$grouped)[1],
      "s\n
    dtm = document term matrix with ",
		  nrow(object$dtm),
      " rows & ",
      ncol(object$dtm),
		  " columns\n
    model = topic model with ",
		  object$model@k,
		  " topics"
	)
)
}

Try the revtools package in your browser

Any scripts or data that you put into this service are public.

revtools documentation built on Jan. 8, 2020, 5:10 p.m.