Addition in R programming language

R programming language is very popular for data science, machine learning and statistical computing. Furthermore, the syntax of R is very simple and easy to learn. In this pots, I am going to make a simple program in R which will add two numbers. a<-12 b<-13 c<-a+b print(c) In the above program, two numeric vectors […]

Addition in R programming language Read More »