tags:

views:

38

answers:

1

I'm trying to load the page that describes these 'functions'. However, R console in windows seems to hate me, it just returns +

?for
?repeat
+3  A: 

for is a reserved word. You have to use backticks if you want to look it up:

?`for`
Jonathan Chang
Thank you Jonathan.
Brandon Bertelsen
or single quotes or double quotes
John
or `help("for")`
Marek