Answers for "multiline comment r"

R
1

multi-line comments in r

R doesn’t support Multi-line and Documentation comments. 
It only supports single-line comments drafted by a ‘#’ symbol.
Posted by: Guest on June-13-2021
1

multiple comment code in R

Ctrl + Shift + C
Posted by: Guest on June-22-2020
1

"R" multi-line comment

There is no specific language support so the two work arounds are:
 - put the comment in a string
 - put the comment in a if(False) block
 - use the ide to add a # at the beginning of all the lines you want commented
Posted by: Guest on June-11-2021

Browse Popular Code Answers by Language