R is a programming language and suitable background for statistical computing works and graphics. R is the most usable statistical programming language because of various reasons. R is a free and open-source software project, which has the freedom to,
R system has two conceptual parts; the Base R system that can be downloaded from the CRAN (The Comprehensive R Archive Network) and everything else. The Base R system contains the base package which is required to run R and most basic functions.
Go to the CRAN (Comprehensive R Archive Network) web site which can be accessed through https://cran.r-project.org/ to install the latest version of R. You are advised to visit CRAN website regularly for updates.
When R is running, functions, data, results are stored in the memory in a form of objects which have a name.
Contains all functions, data, results by you are working with and package loaded
The package is a fundamental units of reproducible R code in R program. They include reusable R functions, the documentations that describe how to use them, and sample data. "Base" package contains most of the fundamental functions of R
The place (directory) where packages are stored is called the library.
R studio is an integrated development environment (IDE) that allows you to interact With R more readily. R studio is most similar to the standard RGui ,but is considerably more flexible. R studio has more drop-down menus, windows with multiple tabs, and many customization options to do our statistical works.
In these example programs, you can find relevant questions, tables made for collected data and R codes.