Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用 R 创建一个目录结构,其中包含类似于 Windows 资源管理器的文件夹。有人可以帮助我吗?
谢谢
如果您希望它用于可视化 R 中的内容,而不是磁盘上的目录(在这种情况下,您可以使用choose.dir建议的或类似的工具),然后查看包中的TkListView函数,TeachingDemos看看这是否是您想要的功能。如果TkListView函数本身没有做你想要的,但给出了正确的显示,那么你可以查看函数的代码(它只是 R 代码,除了 Tk 调用),看看你是否可以修改它来做什么你要。
choose.dir
TkListView
TeachingDemos