R言語ダウンロード機能 download.fileとダウンロード解析
2022-02-24 07:26:14
I. download.file関数
download.file(url,destfile,method,quiet=FALSE,mode="w",cacheOK=TRUE,extra=getOption("download.file.extra"))
url:string,must be http://,https://,ftp://,file://开头
destfile: the address to save the downloaded file, the default working directory, file is the name of the saved file
method:provide "internal","wget","curl","lynx","libcurl","wininet".windows Usually internal can solve most of the problems, a few can not get it such as Cygwin, gnuwin32 with "wget", windows binaries with "curl".method for Mac users are to set. "lynx" mainly for historical interest
quiet:TRUE-disable status messages and display progress bar
mode:Write file mode, can only be used when method="internal","w"/"wb"(binary)/"a"(append)/"ab"
cacheOK: whether to accept server-side cached values, for http://,https://使用.FALSE-尝试从站点获取副本,而不是从中间缓存中获取
注意事項
1. method="auto"(デフォルト):windows-wininet(Windowsのみ),ftps://urls-libcurl; for"wget","curl" -対応するプログラムがシステムにインストールされていて実行ファイルの検索パスに位置していなければなりません。
2. method="libcurl"、Windows用をサポート、https:// + ftps://urls、同時ダウンロードをサポート、urlパラメータと
destfile パラメータには、同じ長さの文字のベクトルを指定することができます。
3. method="internal", doesn't follow http:// + https://重定向.method="wininet" supports partial redirection.
4. https://,windows中不支持method="internal" で、method="libcurl" と "wininet" に対応しています。
II.ダウンローダー パッケージダウンロード機能
http、https、ftpを使用して、ファイルをダウンロードします。download.file()関数との唯一の違いは、HTTPSプロトコルの場合、それを動作させるためにいくつかの設定が変更されることです。
windows:"wininet"+"internal"
その他のシステム:"libcurl"+"wget"->"curl"->"lynx"。
R GUIには通常libcurlのメソッドがあります。
関連
最新
-
nginxです。[emerg] 0.0.0.0:80 への bind() に失敗しました (98: アドレスは既に使用中です)
-
htmlページでギリシャ文字を使うには
-
ピュアhtml+cssでの要素読み込み効果
-
純粋なhtml + cssで五輪を実現するサンプルコード
-
ナビゲーションバー・ドロップダウンメニューのHTML+CSSサンプルコード
-
タイピング効果を実現するピュアhtml+css
-
htmlの選択ボックスのプレースホルダー作成に関する質問
-
html css3 伸縮しない 画像表示効果
-
トップナビゲーションバーメニュー作成用HTML+CSS
-
html+css 実装 サイバーパンク風ボタン
おすすめ
-
R 描画エラー plot.new() : 図形の余白が大きすぎる
-
R: hclust(d, method = method)でのエラー : 外部関数呼び出しは NA/NaN/Inf(arg10) を持つことができません。
-
R: 環境と変数のスコープ問題
-
R - よくあるエラーとその原因 - 注意事項
-
R LanguageError in hist.default() : 'x' は数値でなければなりません.
-
R言語エラー:図の余白が大きすぎる 解決方法
-
ggplot2 からグリッドと背景色を削除する。
-
R read.table Error:埋め込まれたヌルが含まれているようです。
-
[R] is.data.frame(x) のエラー : (リスト) オブジェクトを 'double' 型に強制できない。
-
R言語における共通関数