R/zzz.R

Defines functions .onAttach

.onAttach <- function(libname, pkgname) {
    msg <- c(
        "",
        "Text Mining GUI Interface",
        "",
        "For help: ?TextMiningGUI",
        ""
    )

    if(!requireNamespace("tkrplot", quietly = TRUE)) {
        msg <- c(msg, "** Install optional package \"tkrplot\" for improve the interface","")
    }

    packageStartupMessage(paste(strwrap(msg), collapse = "\n"))
}

Try the TextMiningGUI package in your browser

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

TextMiningGUI documentation built on April 17, 2021, 5:09 p.m.