What is the R programming language?(What is, Concept and Definition)

The R programming language is a computer programming language and software environment for statistical computing.Statisticians and data miners use it extensively for complex analysis.


History


R was first introduced in 1993.It was created by Ross Ihaka and Robert Gentleman at the University of Auckland, New Zealand, as an implementation of the programming language S.Just like S , Developed by John Chambers while at Bell Labs in the late 1970s, R was created to "turn ideas into software quickly and faithfully."


Overview


R is an interpreted language, and its main user interface is a command line.R's native data structures include vectors, scalars, matrices, lists, and data frames, which are similar to a table in a database.of relational data.R performs matrix arithmetic with a speed comparable to MATLAB.


R supports generic functions, in which a function performs the same general procedure, using different code depending on the data type.


Hello world in R


The following is "Hello World" written in R.

print ("Hello, world!")

Comments

Post a Comment