本文介绍了从 R 控制台窗口相当于 wget的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想知道 wget 的 Windows 等价物是什么
Hi I was wondering what the windows equivalent of wget is
我目前在 R 中有一个具有命令的函数
I currently have a function in R that has the command
system("wget www.random.url.com/file")
从运行 R 的 mac/unix 机器上从 Internet 下载文件...Windows 中的 R 等价物是什么?
to download a file from the internet from a mac/unix machine that is running R...what would the equivalent be for R in windows?
推荐答案
查看 download.file
将文件下载到您的计算机.这适用于所有操作系统,包括 Linux、Mac 和 Windows.
Look at download.file
to download files to your computer. This works on all operating systems, including Linux, Mac, and Windows.
这篇关于从 R 控制台窗口相当于 wget的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!