pickItems(tkWidgets)
pickItems()所属R语言包:tkWidgets
Function that builds a widget to allow users to select items from
建立一个Widget的功能,允许用户从选择项目
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Given a vector of characters, this function creates a widget containing list box to allow users to visually select elements from the vector.
由于向量的字符,这个函数创建一个部件含有列表框,让用户可以直观地选择从向量的元素。
用法----------Usage----------
pickItems(items, title1 = "Items to pick", title2 = "Picked items")
参数----------Arguments----------
参数:items
items a vector for the available source elements to be selected
items要选择一个可用的源元素的向量
参数:title1
title1 a character string for the title of the list box that shows the list of items to be selected from
title1字符串为标题的列表框中显示被选中的项目列表
参数:title2
title2 a character string for the title of the list box that shows the items that have been selected
title2为列表框的标题字符串,显示项目已被选中
Details
详情----------Details----------
This function is to provide visual support to other functions and thus may not have much use otherwise.
此功能是提供可视化等功能的支持,因此可能没有多大用处,否则。
值----------Value----------
This function returns a vector of select items.
这个函数返回一个选择项目的向量。
作者(S)----------Author(s)----------
Jianhua Zhang
参考文献----------References----------
<h3>See Also</h3>
举例----------Examples----------
options <- paste("Option", 1:10, sep = "")
if(interactive()){
pickItems(options)
}
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|