pickItems {tkWidgets} | R Documentation |
Given a vector of characters, this function creates a widget containing list box to allow users to visually select elements from the vector.
pickItems(items)
items |
items a vector for the available source elements
to be selected |
This function is to provide visual support to other functions and thus may not have much use otherwise.
This function returns a vector of select items.
This function is part of the Bioconductor project at Dana-Farber Cancer Institute to provide Bioinformatics functionalities through R
Jianhua Zhang
R tcltk
options <- paste("Option", 1:10, sep = "") if(interactive()){ pickItems(options) }