[अद्यतन] टिप्पणियों के आधार पर।
# 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()
[मूल उत्तर]
यहाँ एक और तरीका है ... तल पर तस्वीर देखें। कोड ब्लॉक को RStudio में काटें और चिपकाएँ।
बहु-भाषी टिप्पणियां जो एक IDE का अधिक प्रभावी उपयोग करती हैं, वे एक "अच्छी बात" हैं, अधिकांश IDE या सरल संपादकों के पास सरल टिप्पणी वाले ब्लॉक के भीतर पाठ का हाइलाइटिंग नहीं है; हालांकि कुछ लेखकों ने समय निकालकर यहाँ के तार को सुनिश्चित किया है। R के साथ हमारे पास मल्टी-लाइन टिप्पणियां या यहां-स्ट्रिंग नहीं हैं, लेकिन RStudio में अदृश्य अभिव्यक्तियों का उपयोग करने से वह सब अच्छा हो जाता है।
जब तक बहुभाषी टिप्पणियों के लिए उपयोग किए जाने वाले अनुभाग में कोई बैकटिक्स नहीं है, तब तक यहां-स्ट्रिंग्स, या गैर-निष्पादित टिप्पणी ब्लॉक हैं तब यह कुछ सार्थक हो सकता है।
#### 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!"
और यहाँ की तस्वीर है ...