R/RadioButton.R

Defines functions RadioButton

RadioButton <- function(FRAME,
                        variable = NULL,
                        BUTTON = c("b.r1", "b.r2"),
                        VALUE = c(TRUE, FALSE)) {
  BUTTON <- as.vector(BUTTON)
  for (i in 1:length(BUTTON)) {
    tkpack(
      tkradiobutton(
        FRAME,
        text = BUTTON[i],
        value = VALUE[i],
        variable = variable
      ),
      anchor = "w"
    )
  }
}

Try the detrendeR package in your browser

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

detrendeR documentation built on April 16, 2022, 1:06 a.m.