それでは、R の世界へようこそ ;-)
どうぞ
コードの設定
urls <- c(
"http://stat.ethz.ch/R-manual/R-devel/library/base/html/connections.html",
"http://en.wikipedia.org/wiki/Xz",
"xxxxx"
)
readUrl <- function(url) {
out <- tryCatch(
{
# Just to highlight: if you want to use more than one
# R expression in the "try" part then you'll have to
# use curly brackets.
# 'tryCatch()' will return the last evaluated expression
# in case the "try" part was completed successfully
message("This is the 'try' part")
readLines(con=url, warn=FALSE)
# The return value of `readLines()` is the actual value
# that will be returned in case there is no condition
# (e.g. warning or error).
# You don't need to state the return value via `return()` as code
# in the "try" part is not wrapped inside a function (unlike that
# for the condition handlers for warnings and error below)
},
error=function(cond) {
message(paste("URL does not seem to exist:", url))
message("Here's the original error message:")
message(cond)
# Choose a return value in case of error
return(NA)
},
warning=function(cond) {
message(paste("URL caused a warning:", url))
message("Here's the original warning message:")
message(cond)
# Choose a return value in case of warning
return(NULL)
},
finally={
# NOTE:
# Here goes everything that should be executed at the end,
# regardless of success or error.
# If you want more than one expression to be executed, then you
# need to wrap them in curly brackets ({...}); otherwise you could
# just have written 'finally=<expression>'
message(paste("Processed URL:", url))
message("Some other message at the end")
}
)
return(out)
}
コードの適用
> y <- lapply(urls, readUrl)
Processed URL: http://stat.ethz.ch/R-manual/R-devel/library/base/html/connections.html
Some other message at the end
Processed URL: http://en.wikipedia.org/wiki/Xz
Some other message at the end
URL does not seem to exist: xxxxx
Here's the original error message:
cannot open the connection
Processed URL: xxxxx
Some other message at the end
Warning message:
In file(con, "r") : cannot open file 'xxxxx': No such file or directory
出力の調査
> head(y[[1]])
[1] "<!DOCTYPE html PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\">"
[2] "<html><head><title>R: Functions to Manipulate Connections</title>"
[3] "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">"
[4] "<link rel=\"stylesheet\" type=\"text/css\" href=\"R.css\">"
[5] "</head><body>"
[6] ""
> length(y)
[1] 3
> y[[3]]
[1] NA
補足事項
トライキャッチ
tryCatch
expr
エラーまたは警告がない限り、実行に関連付けられた値を返します。この場合、特定の戻り値 (return(NA)
上記を参照) は、それぞれのハンドラ関数を指定することによって指定できます (引数error
およびwarning
を参照?tryCatch
)。これらは既に存在する関数である可能性がありますが、内部で定義することもできますtryCatch()
(上記で行ったように)。
ハンドラー関数の特定の戻り値を選択することの意味
NA
エラーの場合に が返されるように指定したように、 の 3 番目の要素はy
ですNA
。戻り値として選択NULL
した場合、 の長さは、 の戻り値を単純に「無視」するのでy
は2
なく、3
になります。また、 を介して明示的な戻り値を指定しない場合、ハンドラー関数は戻ります(つまり、エラーまたは警告状態の場合)。lapply()
NULL
return()
NULL
「望ましくない」警告メッセージ
warn=FALSE
効果がないように見えるため、警告を抑制する別の方法 (この場合はあまり重要ではありません) を使用することです。
suppressWarnings(readLines(con=url))
それ以外の
readLines(con=url, warn=FALSE)
複数の式
中括弧で囲むと、「実際の式の部分」(expr
の引数)に複数の式を配置することもできることに注意してください(その部分で説明したように)。tryCatch()
finally