-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathr_basics.R
46 lines (32 loc) Β· 1015 Bytes
/
r_basics.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# create a note with ctrl+shift+c
# example of addition in R
5 + 5
# example of multiplication in R
5 * 5
# example of division in R
5 / 5
#example of exponents in R
2^3
# examples of remainders in R
10 %% 3
10 %% 2
# PEMDAS: P- Parentheses, E- Exponents, M- Multiplication,
# D- Division, A- Addition, and S- Subtraction
# Use parentheses to change the order of operations
# Assigning a variable (binding)
random_example <- (5*5 / 3 + 20 ^ 4)
random_example
random_example / 6
# assign separate variables for different parts
part_1 <- 5*5 / 3
part_2 <- 20 ^ 4
part_2 + part_1
# variables can be overwritten
random_example <- 6
random_example
# Rules for variables
# No whitespace, can't start the name with a number or underscore
# Cannot use special keywords like if, function, or else
# variables should always be lowercase
# separate words should be separated by underscores for easy reading
# should clearly describe the value held by the variable