Is R an interpreted or compiled programming language?

16k views Asked by At

Is R an interpreted or compiled programming language?

6

There are 6 answers

0
Michael Kohne On BEST ANSWER

The R FAQ says: "The core of R is an interpreted computer language".

3
Godeke On

R doesn't compile. There are projects that try to get it compiled: http://www.hipersoft.rice.edu/rcc/ , http://www.rforge.net/r2c/ but I can't find any currently supported.

That said, the performance on modern hardware seems reasonable for even larger workloads I have thrown at it (millions of records).

0
NawaMan On
0
DigitalZebra On

You can build a compiler or interpreter for any programming language. In general, the language itself is not compiled or interpreted.

So, R could be either interpreted or compiled. Nonetheless, in the most common implementation, R is interpreted.

0
Wildcat On

It's more accurate to say that the default implementation of some language is interpreted or compiled. But not the language itself!

0
wespiserA On

R is definitely written in C. I asked myself this question alittle while ago, and resolved it by downloaded the source code from http://www.r-project.org/.