vote up 3 vote down star
3  
Let's vote to re-open this question, it's a very good question. :( – Nathan Campos Nov 5 at 19:46
1  
I don't really understand how this is any less of a question than the other similar (and incredibly popular) threads. Care to explain the bias here? – temp2290 Nov 5 at 20:12
1  
Voted for re-opening... – Arnis L. Nov 5 at 20:52
See also: stackoverflow.com/questions/1295955/… – Matt Parker Nov 5 at 22:04
And stackoverflow.com/questions/1535021/… – Shane Nov 5 at 22:11

4 Answers

vote up 4 vote down check

For instance, the number 1.23 is a numerical constant, but the expressions +1.23 and -1.23 are calls to the functions + and -:

> class(quote(1.23))
[1] "numeric"
> class(quote(+1.23))
[1] "call"
> class(quote(-1.23))
[1] "call"
link|flag
vote up 5 vote down

Many objects are explicitly "hidden" in R. See, for instance, this question on R-help and this question on the R developer help.

When creating an R package, you have the choice about whether you "export" an object in the NAMESPACE file. Otherwise the object is just intended to be used internally. By convention, many of these names begin with a dot (objects that start with a dot are also "hidden" from the ls() function). Hidden objects can still be accessed, but they don't need to be documented.

You can read more about this in "Writing R Extensions".

link|flag
vote up 4 vote down

Adding "L" after a number makes it an integer.

class(3L)
[1] "integer"

You can create non-standard variable name using backquotes.

`a non-standard variable name` <- 1:10
`a non-standard variable name`
[1]  1  2  3  4  5  6  7  8  9 10

You can create your own environments to put variables in. (This can be used for "global" variables, without the danger that they cause.)

myenv <- new.env()
assign("x", 1.2345, envir=myenv)
ls(envir=myenv)
get("x", envir=myenv)
[1] 1.2345
link|flag
vote up 2 vote down

It's existence.

(Apparently it's a popular statistical programming language).

link|flag
1  
R is a statical language. r-project.org – Nathan Campos Nov 5 at 19:19
2  
"R" is a dsl (domain specific) for statistical work. It has been around for a relatively long time and is fairly mature and stable. I think the OP asked a fair question. – Angelo Nov 5 at 19:19
2  
Ok. Not really sure what that means, but R is on page 6 out of 409 pages of SO tags, ahead of (for instance) lisp (stackoverflow.com/tags?page=6). – Shane Nov 5 at 21:13
2  
The downvote arrow says, "This answer is not useful." I don't see how yours (esp. in original form) is. It would have been amusing as a comment to the question (believe me, R users understand that most people don't have any idea what R is), but let me know how it's useful and I'll reverse my vote. – Matt Parker Nov 5 at 21:57
2  
I completely agree that it was a nicely-put, graceful sarcastic comment. I was amused. I upvote jokes like that all the time when they are comments on the question. I don't think it's a good thing when the top answer on a question about hidden features of R is "Its existence! Seriously, what the hell is R?" Uh... not that there are all that many other answers here... eh. – Matt Parker Nov 5 at 22:48
show 11 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.