R ARTICLE

History of R

Robert Gentleman Ross Ihaka image
Robert Gentleman & Ross Ihaka

R is a programming language for statistical computing and graphics supported by the R Core Team and the R Foundation for Statistical Computing . Created by statisticians Ross Ihaka and Robert Gentleman , R is used among data miners, bioinformaticians and statisticians for data analysis and developing statistical software. Users have created packages to augment the functions of the R language.

R Introduction

What is R?

R environment

R is an integrated suite of software facilities for data manipulation, calculation and graphical display. It includes-

R Syntax

R Command Prompt

        
          $ R
        
      
        
          > myString <- "Hello, World!"
          > print ( myString )
          [1] "Hello, World!"
        
      
        
        if(FALSE) {
          
            This is a demo for multi-line comments
            and it should be put inside either a
            single OR double quote"
          
          }

          myString <- "Hello, World!"
        print( myString )
        
      

R Variables

Variable Name -> Validity -> Reason