Skip to content

Latest commit

 

History

History
55 lines (50 loc) · 4.41 KB

README.md

File metadata and controls

55 lines (50 loc) · 4.41 KB

Data Science using R

This comprehensive collection covers everything from the foundational basics to advanced techniques related to R Programming language. R is a language and environment for statistical computing and graphics. R provides a wide variety of statistical (linear and nonlinear modeling, classical statistical tests, time-series analysis, classification, clustering, …) and graphical techniques and is highly extensible.

Creating your first R program

  1. You can run an R program in many ways:
  i)   R environment directly in windows/Linux.
  ii)  Google Colab ( Change the language from Python to R in the runtime type under the Runtime tab)
  iii) Other online platforms include onlinegdb, programiz, etc.
  1. Write your Hello World program
print("hello world")
  1. Save it as an extension .R ( test.R)
  2. Run it using the below Rscript test.R
Rscript test.R

Table of Contents

To be continued (Work in progress). If you want to add something, you are most welcome to do so.