1000 / 10
## [1] 100
x <- 1000/10
# x
x <- 3 * 4
x
## [1] 12
this_is_a_really_long_name <- 2.5
r_rocks <- 2 ^ 3
TABseq(from = 1, to = 10, by = 1)
## [1] 1 2 3 4 5 6 7 8 9 10
+seq(from =1, to = 10)
## [1] 1 2 3 4 5 6 7 8 9 10
y <- seq(1, 10, length.out = 5)
y
## [1] 1.00 3.25 5.50 7.75 10.00
(y <- seq(1, 10, length.out = 5))
## [1] 1.00 3.25 5.50 7.75 10.00