R中的下拉列表实现
我正在使用以下代码来开发我一直在开发的股票价格应用程序(非常感谢这里的人们的大量帮助!)。它应该做的事情之一是允许用户选择一家公司来从存储的 XML 文件中进行分析,我一直在使用以下代码来执行此操作:
df <- xmlToDataFrame(file.choose())
而不是使用 file.choose () {显然对话框揭示了很多系统结构},建议使用下拉菜单,其中包含公司列表和文件链接。
这样的事情在 R 中可能吗?有没有一种简单的方法来实现它?
I am using the following code for the Share Price Application I have been developing (with plenty of help from people here that is greatly appreciated!). One of the things it should do is allow the user to pick a company to analyse from stored XML Files, I have been using the following code to do this:
df <- xmlToDataFrame(file.choose())
Instead of using file.choose () {as apparently the dialogue box reveals to much of the system structure}, it has been suggested to use a drop down menu, with a list of the companies and a link to the file.
Is such a thing possible in R and is there an easy-ish way of implementating it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
select.list
允许您从列表中进行选择。另请检查菜单
。示例:
使用
menu
使用
select.list
如果您想在列表上显示名称和链接,请使用
select.list
allow you to select from a list. Check alsomenu
.Examples:
Using
menu
Using
select.list
If you want to show name and link on list then use
如果您不想进行
tcltk
编程,请尝试gWidgets
软件包。If you don't want to get into
tcltk
programming, try thegWidgets
packages.