그럼 : 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 insided 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
tryCatch
expr
오류나 경고가없는 한 실행과 관련된 값을 반환합니다 . 이 경우 return(NA)
각각의 핸들러 함수를 제공하여 특정 반환 값 ( 위 참조 )을 지정할 수 있습니다 (인수 error
및 warning
in 참조 ?tryCatch
). 이것들은 이미 존재하는 함수 일 수 있지만 tryCatch()
(위에서 한 것처럼) 내부에서 정의 할 수도 있습니다 .
핸들러 함수의 특정 리턴 값 선택의 의미
NA
오류가 발생했을 때 반환되도록 지정 했으므로 in의 세 번째 요소는 y
입니다 NA
. 우리가 선택한 싶은 경우 NULL
반환 값의 길이로 y
불과했을 2
대신 3
으로 lapply()
단순히 반환 값을 "무시"됩니다 NULL
. 를 통해 명시적인 반환 값을 지정하지 않으면 return()
처리기 함수가 반환됩니다 NULL
(예 : 오류 또는 경고 조건).
"원치 않는"경고 메시지
로 warn=FALSE
사용하는 것입니다 영향, (이 경우에는 정말 관심을하지 않은) 경고를 억제하는 다른 방법이 보이지 않는다
suppressWarnings(readLines(con=url))
대신에
readLines(con=url, warn=FALSE)
여러 표현
당신은 또한 (인수은 "실제 표현 부분"여러 표현을 배치 할 수 있습니다 expr
의 tryCatch()
당신이 (필자는 도시처럼 중괄호를 포장하는 경우) finally
일부).
paste
함수 의 첫 번째 문자열 이 공백으로 끝나는 경우 공백과sep=""
?