R Examples
R Syntax
Syntax ExplainedR Comments
Single-line comment before a line of code
Single-line comment at the end of a line of code
Multi-line comment
Comments Explained
R Variables
Creating two variables
Combine both text and a variable
Add a variable to another variable
Display the sum of two variables by using the + operator
Assign the same value to multiple variables in one line
Variables Explained
R Data Types
Changing the type of a variable after it has been set
Using the class() function to check the data type of different variables
Data Types Explained
R Numbers
Creating a numeric data type
Creating an integer
Creating a complex number
Converting from one type to another
Numbers Explained
R Math
Add numbers
Subtract numbers
Find the lowest or highest number in a set
Find the square root of a number
Return the absolute (positive) value of a number
Round a number upwards and downwards to its nearest integer
Math Explained
R Strings
Creating a string literal
Assigning a string to a variable
Find the number of characters in a string
Check a string for a character or a sequence of characters
Combine/concatenate two strings
Using an escape character to output a word in a string
Strings Explained
R Booleans
Booleans ExplainedR Operators
Addition operator
Subtraction operator
Multiplication operator
Division operator
Exponent operator
Modulus operator
Integer Division operator
Equal operator
Not equal operator
Greater than operator
Less than operator
Greater than or equal to operator
Less than or equal to operator
Operators Explained
R If...Else
If statement
Else if statement
If else statement
Nested if statements
The AND operator (&)
The OR operator (&)
If...Else Explained
R While Loop
While loop
While loop with a break
While loop with the next statement
If..else combined with a while loop
While Loop Explained
R For Loop
Using a for loop to iterate over a sequence
Using a for loop to print every item in a list
Using a for loop to print the number of dices
If..else combined with a for loop
A nested for loop
For Loop Explained
R Functions
Call a function
Function arguments
Default parameter value
Let a function return a value
Nested function
Recursion
Functions Explained
R Global Variables
Create a variable outside of a function and use it inside the function
Create a variable inside of a function with the same name as the global variable
Create a global variable inside a function
Global Variables Explained
R Vectors
Create a vector of strings
Create a vector of numbers
Create a vector with numerical values in a sequence
Find the length of a vector
Sort a vector
Access a vector
Change a vector item
Vectors Explained