DEV Community

Cover image for A brief introduction to the R programming language
Royce
Royce

Posted on • Updated on

A brief introduction to the R programming language

What is the ‘R’ programming language?

      R is a multi-paradigmatic (procedural, object-oriented, functional, and more) programming language used for statistical computing and graphics. It was created between 1991 - 1995, at the University of Auckland, by statisticians, Ross Ihaka and Robert Gentleman. R is used among data scientists and statisticians for data analysis and developing statistical software. It also possesses and intensive catalog of statistical and graphical methods, which include machine learning algorithms, linear progressions, and statistical inference to name a few.[1]
      R is open-source, free software, within the GNU package (notable software packages developed by the Free Software Foundation as part of the GNU Project). R is used not only by academics but by a variety of other industry including healthcare, government, insurance, and finance. Some notable large companies include Uber, Facebook, Google, and many more.

Use Cases

      R offers a variety of statistics-related libraries and an environment favorable for statistical computing and design. In 2021, R ranked in the top five programming languages for data analysists and research programmers. Some real-world applications of R being used could be optimizing a financial portfolio, processing marking data, or even analyzing outcomes of clinical trials. R is more than just a programming language; R’s official software environment has built in visualization capabilities making it easy to plot data. It has an extensive community of useRs that have created an extensive set of packages that can be used for almost any data processing task.

Pros and Cons

      What are some of the pros of using R versus other languages?
Open-Source: It is open-source and free, which means useRs can contribute to the development of R by optimizing packages, develop new ones, and resolve issues therein.
Analysis: R was specifically designed for statistical analysis which means it can perform a variety of machine learning algorithms such as classification and regression.
Packages: R provides packages and feature for developing neural networks. Its data visualization capabilities are quite capable as well. There are various libraries, such as ggplot2 and plotly, which allow for visually appealing graphs which set R apart from other languages.

      What are some of the cons of using R versus other languages?
Learning Curve: R is a complicated language and has a steep learning curve and could be difficult for those to pick up without prior programming experience.
Security: R lacks basic security found in other languages. As a result, there are restrictions on R as it cannot be embedded into web applications.
Speed and Memory: in R, objects are stored in physical memory and utilizes more than other languages. It requires data to a single place which is in the memory. Algorithms in R are spread across packages, which makes it slower than other languages more contribute to its difficulty to implement algorithms.

R vs Python

As this is primarily an article about R, I will not do a proper comparison between the two languages, but simply point out some key differences.

  • R is difficult to learn in the beginning but has more specific applications for statistical analysis, while Python Is more beginner friendly but that in and of itself limits what it can do regarding analysis.
  • The primary objective of R is data analysis and statistics whereas the primary objective of Python is development and production.
  • R is integrated to run locally whilst Python is well-integrated into apps This is just to name a few but there might be several reasons to pick one language over another, depending on each projects’ needs.

Top comments (0)