R »

My Coding > Software > R

R

R is a programming language that is an essential skill for statistical computing and graphics. It is the tool of choice for data science professionals in every industry and field—not only to create reproducible high-quality analyses, but to take advantage of R's great graphic and charting capabilities.

R Operators

R arithmetic Operators

  • + - Addition
  • - - Subtraction
  • * - Multiplication
  • / - Division
  • ^ or ** - Exponentiation
  • %% - Modulus ( (Remainder from division))
  • %/% - Integer division

R relational Operators

  • < - Less than
  • > - Greater than
  • <= - Less than or equal
  • >= - Greater than or equal
  • == - Equal to
  • != - Not equal to

R logical Operators

  • ! - Logical NOT
  • & - Element wise logicval AND
  • && - Logical AND
  • | - Element-wise logical OR
  • || - Logical OR

R assignment Operators

  • <-, <<-, = - Leftwards assignment
  • ->, ->> - Rightwards assignment
  • %>% - Pipeline, required libray dplyr or magrittr


Published: 2021-11-07 08:50:31
Updated: 2021-11-27 08:41:07

Last 10 artitles


9 popular artitles

© 2020 MyCoding.uk -My blog about coding and further learning. This blog was writen with pure Perl and front-end output was performed with TemplateToolkit.