Skip to content
Prev 80787 / 398502 Next

open source and R

On Sun, 13 Nov 2005, Robert wrote:

            

        
Robert wrote:

            
Please indent your replies, they are very difficult to read sensibly.

Although surprisingly much of R is written in R, quite a lot is written in
Fortran and C. One very good reason, apart from efficiency, is code re-use
- BLAS and LAPACK among many others are excellent implementations of what
we need for numerical linear algebra. R is very typical of good scientific
software, it tries to avoid re-implementing functions that are used by the
community, are well-supported by the community, and work. Packages by and
large do the same - if existing software does the required job, package
authors attempt to port that software to R, providing interfaces to
underlying C or Fortran libraries. 

It's about standing on the shoulders of giants.