ঠিক আছে তবে: আর বিশ্বে আপনাকে স্বাগতম ;-)
আপনি এখানে যান
কোড সেট আপ করা হচ্ছে
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
expr
যদি কোনও ত্রুটি বা সতর্কতা না থাকে তবে নির্বাহের সাথে সম্পর্কিত মানটি প্রদান করে । এই ক্ষেত্রে, নির্দিষ্ট রিটার্ন মানগুলি ( return(NA)
উপরে দেখুন) একটি সম্পর্কিত হ্যান্ডলার ফাংশন সরবরাহ করে (যুক্তিগুলি error
এবং warning
ইন দেখুন ?tryCatch
) নির্দিষ্ট করা যেতে পারে । এগুলি ইতিমধ্যে বিদ্যমান ফাংশন হতে পারে তবে আপনি সেগুলি এর মধ্যেও নির্ধারণ করতে পারেন tryCatch()
(যেমন আমি উপরে করেছি)।
হ্যান্ডলার ফাংশনগুলির নির্দিষ্ট রিটার্ন মানগুলি বেছে নেওয়ার প্রভাব
আমরা নির্দিষ্ট কিছু যে হিসাবে NA
ত্রুটির ক্ষেত্রে ফেরত পাঠানো উচিত, তৃতীয় উপাদান 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=""
?