R Tutorials for Citizen Data Scientists

Beginners tutorial with R – If…Else Statement

(R Tutorials for Citizen Data Scientist) Beginners tutorial with R – If…Else Statement An if statement can be followed by an optional else statement which executes when the boolean expression is false. Syntax The basic syntax for creating an if…else statement in R is − if(boolean_expression) { // statement(s) will execute if the boolean expression is true. } else { // …

Beginners tutorial with R – If Statement

(R Tutorials for Citizen Data Scientist) Beginners tutorial with R – If Statement An if statement consists of a Boolean expression followed by one or more statements. Syntax The basic syntax for creating an if statement in R is − if(boolean_expression) { // statement(s) will execute if the boolean expression is true. } If the Boolean expression evaluates to …

Beginners tutorial with R – Decision making

(R Tutorials for Citizen Data Scientist) Beginners tutorial with R – Decision making Decision making structures require the programmer to specify one or more conditions to be evaluated or tested by the program, along with a statement or statements to be executed if the condition is determined to be true, and optionally, other statements to be …

Beginners tutorial with R – Operators

(R Tutorials for Citizen Data Scientist)   An operator is a symbol that tells the compiler to perform specific mathematical or logical manipulations. R language is rich in built-in operators and provides following types of operators. Types of Operators We have the following types of operators in R programming − Arithmetic Operators Relational Operators Logical …

Beginners tutorial with R – Data Types

(R Tutorials for Citizen Data Scientist)   Beginners tutorial with R – Data Types Generally, while doing programming in any programming language, you need to use various variables to store various information. Variables are nothing but reserved memory locations to store values. This means that, when you create a variable you reserve some space in …