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.
我想知道是否有可能(从网站)下载由 Rdata 格式的原始数据集制作的子集。最简单的方法当然是以这种方式进行:
set<-url("http://xxx.com/datasets/dataset.RData") load(set) subset<-set[set$var=="yyy",]
但是我正在尝试加快我的代码并避免下载不必要的列。
感谢您的任何反馈。
马特
该任务没有机制。也没有检查 .Rdata 文件的机制。过去,当有人提出要求时,人们被建议转换为真正的数据库管理系统。