R/put_label.R

Defines functions put_label

put_label <- function(parent, text, row, column, sticky = "e") {
    label <- ttklabel(parent, text = text)
    tkgrid(label, row = row, column = column, sticky = sticky)
}

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.