[আপডেট] মন্তব্যের ভিত্তিতে।
# An empty function for Comments
Comment <- function(`@Comments`) {invisible()}
#### Comments ####
Comment( `
# Put anything in here except back-ticks.
api_idea <- function() {
return TRUE
}
# Just to show api_idea isn't really there...
print( api_idea )
`)
####
#### Code. ####
foo <- function() {
print( "The above did not evaluate!")
}
foo()
[আসল উত্তর]
এখানে আরও একটি উপায় ... নীচে পিকটি দেখুন। আরএসস্টুডিওতে কোড ব্লকটি কেটে পেস্ট করুন।
একাধিক মন্তব্য যা আইডিই ব্যবহারকে আরও কার্যকর করে তোলে তা হ'ল "গুড থিং", বেশিরভাগ আইডিই বা সাধারণ সম্পাদকদের সহজ মন্তব্য-আউট ব্লকগুলির মধ্যে পাঠ্য হাইলাইটিং থাকে না; যদিও কিছু লেখক এখানে স্ট্রিংগুলির মধ্যে পার্সিং নিশ্চিত করার জন্য সময় নিয়েছে। আর এর সাথে আমাদের কোনও মাল্টি-লাইন মন্তব্য বা এখানে স্ট্রিং নেই, তবে আরস্টুডিওতে অদৃশ্য এক্সপ্রেশন ব্যবহার করা সমস্ত সেই মঙ্গলভাব দেয়।
মাল্টিলাইন মন্তব্য, এখানে-স্ট্রিংস বা অ-এক্সিকিউটেড মন্তব্য ব্লকগুলির জন্য ব্যবহার করার জন্য কাঙ্ক্ষিত বিভাগটিতে কোনও ব্যাকটিক্স নেই যতক্ষণ না তখন এটি মূল্যবান কিছু হতে পারে।
#### Intro Notes & Comments ####
invisible( expression( `
{ <= put the brace here to reset the auto indenting...
Base <- function()
{ <^~~~~~~~~~~~~~~~ Use the function as a header and nesting marker for the comments
that show up in the jump-menu.
--->8---
}
External <- function()
{
If we used a function similar to:
api_idea <- function() {
some_api_example <- function( nested ) {
stopifnot( some required check here )
}
print("Cut and paste this into RStudio to see the code-chunk quick-jump structure.")
return converted object
}
#### Code. ####
^~~~~~~~~~~~~~~~~~~~~~~~~~ <= Notice that this comment section isnt in the jump menu!
Putting an apostrophe in isn't causes RStudio to parse as text
and needs to be matched prior to nested structure working again.
api_idea2 <- function() {
} # That isn't in the jump-menu, but the one below is...
api_idea3 <- function() {
}
}
# Just to show api_idea isn't really there...
print( api_idea )
}`) )
####
#### Code. ####
foo <- function() {
print( "The above did not evaluate and cause an error!")
}
foo()
## [1] "The above did not evaluate and cause an error!"
এবং ছবি এখানে ...