Run ❯
Get your
own
website
❯
Run Code
Ctrl+Alt+R
Change Orientation
Ctrl+Alt+O
Change Theme
Ctrl+Alt+D
Go to Spaces
Ctrl+Alt+P
# Vector with numerical decimals in a sequence numbers1 <- 1.5:6.5 numbers1 # Vector with numerical decimals in a sequence where the last element is not used numbers2 <- 1.5:6.3 numbers2
[1] 1.5 2.5 3.5 4.5 5.5 6.5
[1] 1.5 2.5 3.5 4.5 5.5